/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.mec-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    color: #1e293b;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 999999;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

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

.mec-toast-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.mec-toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.mec-toast-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Mobile toast adjustments */
@media (max-width: 768px) {
    .mec-toast {
        top: 10px;
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
        font-size: 13px;
        padding: 14px 16px;
    }
}