/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #4F46E5;
}

.toast.success {
    border-left-color: #10B981;
}

.toast.error {
    border-left-color: #EF4444;
}

.toast-icon {
    font-size: 20px;
}

.toast-message {
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
}

.toast-close {
    margin-left: auto;
    cursor: pointer;
    color: #9CA3AF;
    background: none;
    border: none;
    font-size: 18px;
}

.toast.hiding {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Custom Confirm Modal */
.modal-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    animation: fadeIn 0.2s forwards;
}

.modal-confirm {
    background: white;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    animation: popIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-confirm h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #111827;
}

.modal-confirm p {
    margin: 0 0 24px 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.5;
}

.modal-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
