/* Toast Notification Styles */
.toast-notif {
    position: fixed;
    top: 20px;
    right: -400px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.toast-notif.show {
    right: 20px;
}

.toast-notif.success {
    border-left: 4px solid #22c55e;
}

.toast-notif.error {
    border-left: 4px solid #ef4444;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.toast-notif.success i {
    color: #22c55e;
}

.toast-notif.error i {
    color: #ef4444;
}
