﻿.dlr-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    border-radius: 10px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dlr-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
/* Fase 1: editorial */
.dlr-toast.editorial {
    background: rgba(20, 20, 40, 0.93);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

    .dlr-toast.editorial i {
        color: #D4AF37;
        font-size: 15px;
    }
/* Fase 2: patrocinado */
.dlr-toast.patrocinado {
    background: rgba(30, 8, 8, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.55);
    cursor: pointer;
}

    .dlr-toast.patrocinado:hover {
        border-color: #D4AF37;
    }

    .dlr-toast.patrocinado i {
        color: #D4AF37;
        font-size: 15px;
    }

.dlr-toast .toast-badge {
    font-size: 10px;
    background: rgba(212,175,55,0.2);
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 4px;
    padding: 1px 6px;
    flex-shrink: 0;
    white-space: nowrap;
}
/* Toast IA */
.dlr-toast.ia {
    background: rgba(30, 10, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

    .dlr-toast.ia i {
        color: #D4AF37;
        font-size: 16px;
    }