/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 150px; /* Below navbar and alert */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.toast-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.toast.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.toast.toast-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.toast.toast-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast {
        top: 130px;
        min-width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        transform: translateX(0);
        margin: 0 auto;
        padding: 14px 18px;
        font-size: 1rem;
        line-height: 1.6;
        border-radius: 12px;
    }

    .toast.show {
        transform: translateX(0) translateY(0);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .toast {
        top: 120px;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}
