/* static/app/prompts/favoritos.css */

/* =========================================================
   LISTA DE FAVORITOS
   ========================================================= */

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


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


/* ITEM */
.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:#cfc8bb;
    background:#f7f4ee;
}


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


/* TIPO */
.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;
}

.preview{
    line-height:1.4;
}

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

.btn-eliminar{
    background:transparent;
    border:none;
    cursor:pointer;
    font-size:14px;
}


/* =========================================================
   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 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;
}


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


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


/* =========================================================
   PAPELERA
   ========================================================= */

/* HEADER CON PAPELERA */
.favorito-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:4px;
}

/* BOTÓN PAPELERA */
.btn-eliminar{
    background:transparent;
    border:none;
    cursor:pointer;
    font-size:14px;
    line-height:1;
    padding:2px;
}

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