.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease, visibility 0s linear 0.3s;
    display: none !important;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    visibility: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
    display: flex !important;
}

.notification.success {
    background-color: #2ecc71;
}

.notification.error {
    background-color: #e74c3c;
}

.notification.warning {
    background-color: #f39c12;
}

.notification.info {
    background-color: #3498db;
}

.notification::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
}

.notification.success::before {
    content: "\f00c";
}

.notification.error::before {
    content: "\f00d";
}

.notification.warning::before {
    content: "\f071";
}

.notification.info::before {
    content: "\f05a";
} 