#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.notification {
    background: linear-gradient(135deg, #5f3c08 0%, #865204 90%);
    /* Gold to Orange */
    color: #ffffff;
    /* Black text */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1s ease, transform 1s ease;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.hide {
    opacity: 0;
    transform: translateY(100%);
}

.notification strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}