/* --- Toast Container --- */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Individual Toast --- */
.toast {
    position: relative;
    padding: 14px 42px 14px 14px !important; /* deja espacio para la X */
    border-radius: 10px;
    color: var(--zp-text);
    background: var(--zp-bg-card);
    border: 1px solid var(--zp-border);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    white-space: normal;
    word-wrap: break-word;
    max-width: 320px;
}

/* --- Close Button (X) --- */
.toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 16px;
    color: var(--zp-text-muted);
    cursor: pointer;
    transition: 0.2s ease;
}

.toast-close:hover {
    color: var(--zp-text);
}

/* --- Toast message text --- */
.toast-msg {
    margin-right: 10px; /* evita superposición visual */
}
