
/* ================= TOAST NOTIFICATIONS ================= */

.hoidap-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hoidap-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.hoidap-toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.hoidap-toast-message {
    flex: 1;
    color: #303030;
}

/* Success Toast */
.hoidap-toast-success {
    border-left: 4px solid #4caf50;
}

.hoidap-toast-success .hoidap-toast-icon {
    background: #e8f5e9;
    color: #4caf50;
}

/* Error Toast */
.hoidap-toast-error {
    border-left: 4px solid #f44336;
}

.hoidap-toast-error .hoidap-toast-icon {
    background: #ffebee;
    color: #f44336;
}

/* Warning Toast */
.hoidap-toast-warning {
    border-left: 4px solid #ff9800;
}

.hoidap-toast-warning .hoidap-toast-icon {
    background: #fff3e0;
    color: #ff9800;
}

/* Info Toast */
.hoidap-toast-info {
    border-left: 4px solid #2196f3;
}

.hoidap-toast-info .hoidap-toast-icon {
    background: #e3f2fd;
    color: #2196f3;
}

/* Mobile responsive */
@media (max-width: 575.98px) {
    .hoidap-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
    }
}
