/**
 * Premium Toast Notification Styles
 * MicroChat 1.0 - Shared Utility
 */

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: white;
    color: #111827;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
}

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

.toast i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-success i { color: #10b981; }
.toast-error i { color: #ef4444; }
.toast-info i { color: #3b82f6; }
.toast-warning i { color: #f59e0b; }

.toast-custom-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.toast-message {
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    .toast {
        min-width: auto;
    }
}
