/* ================= TOAST NOTIFICATIONS (TOP RIGHT STACKED) ================= */
.toast-container-top-right {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
    pointer-events: none; /* Permite hacer clic a través del contenedor vacío */
}

.toast-notification {
    pointer-events: auto; /* Reactiva clics solo en las tarjetas */
    background: rgba(15, 5, 5, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    animation: slideInDown 0.3s ease-out forwards;
}

.toast-success {
    border-color: #25D366;
}

    .toast-success .toast-icon i {
        color: #25D366;
    }

.toast-error {
    border-color: var(--primary);
}

    .toast-error .toast-icon i {
        color: var(--primary);
    }

.toast-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.toast-content h4 {
    font-family: var(--font-title);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.toast-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    transition: 0.2s;
}

    .toast-close:hover {
        color: var(--text-light);
    }

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
