/* static/app/emails/favoritos.css */

@import url("/static/app/prompts/crear.css");

/* =========================================================
   LISTA DE FAVORITOS (EMAILS)
   ========================================================= */

.resultado-body{
    padding-top:10px;
}

.lista-favoritos{
    display:flex;
    flex-direction:column;
    gap:12px;
}


/* =========================================================
   ITEM EMAIL
   ========================================================= */

.favorito-item{
    padding:14px;
    border:1px solid #d6d0c4;
    border-radius:8px;
    background:white;

    cursor:pointer;
    transition:all 0.15s ease;
}


/* HOVER */
.favorito-item:hover{
    border-color:#c4bba9;
    background:#f4f1ea;
}


/* ACTIVO */
.favorito-item.activo{
    border-color:#375e65;
    background:#eef3f3;
}


/* TIPO (EMAIL) */
.favorito-item .tipo{
    font-size:11px;
    color:#8a8375;
    letter-spacing:0.5px;
}


/* TITULO */
.favorito-item .titulo{
    font-size:13px;
    font-weight:500;
    color:#2c3c3d;
    margin:4px 0;
}


/* PREVIEW */
.favorito-item .preview{
    font-size:12px;
    color:#6f6f6f;
    line-height:1.4;
}

.favorito-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
}


/* =========================================================
   VISTA (DERECHA)
   ========================================================= */

#vista-contenido{
    white-space:pre-line;
    font-size:13px;
    line-height:1.6;
    color:#2c3c3d;

    word-break:break-word;
    overflow-wrap:break-word;
}


/* =========================================================
   BOTÓN COPIAR
   ========================================================= */

.btn-compartir{
    background:#c48a38;
    color:white;

    font-family:"Inter", sans-serif;
    font-size:12.5px;
    font-weight:500;

    width:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    overflow:hidden;
    border:1px solid transparent;
    height:30px;

    border-radius:6px;

    cursor:pointer;
    transition:all 0.15s ease;
}

.btn-compartir:hover{
    background:#a8732f;
}

.btn-ok{
    background:#375e65 !important;
}

.btn-ok::after{
    content:" ✔";
}


/* =========================================================
   BOTÓN EDITAR
   ========================================================= */

.btn-editar{
    background:#e7e3da;
    color:#2c3c3d;
    border:1px solid #cfc8bb;

    font-family:"Inter", sans-serif;
    font-size:12.5px;
    font-weight:500;

    width:110px;
    height:30px;

    border-radius:6px;
    cursor:pointer;
}

.btn-editar:hover{
    background:#dcd6ca;
}



/* =========================================================
   TABS (TOPBAR)
   ========================================================= */

.tabs{
    display:flex;
    gap:18px;
}

.tabs a{
    text-decoration:none;
    color:#375e65;
    font-size:14px;
    padding:6px 12px;
    border-radius:6px;
    font-weight:500;
    transition:all 0.15s ease;
}

.tabs a:hover{
    background:#f2efe9;
}

.tabs a.activo{
    background:#ded8cc;
    color:#375e65;
}


/* =========================================================
   ESTADO VACÍO (PREPARADO)
   ========================================================= */

.lista-favoritos.vacio{
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}

.lista-favoritos.vacio::before{
    content:"No tienes emails favoritos todavía";
    font-size:13px;
    color:#8a8375;
}


/* =========================================================
   BOTÓN ELIMINAR
   ========================================================= */

.btn-eliminar {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
    padding: 2px 4px;
}

.btn-eliminar:hover {
    opacity: 1;
}