/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background-color: #10b981;
    color: #ffffff;
    border-left: 4px solid #059669;
}

.toast-error {
    background-color: #ef4444;
    color: #ffffff;
    border-left: 4px solid #dc2626;
}

.toast-message {
    display: block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}
