/* static/app/prompts/recientes.css */

/* =========================================================
   LISTA DE RECIENTES
   ========================================================= */

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

.bloque-info{
    font-size:11px;
    color:#7a7468;
    margin-top:4px;
}

.titulo-inline{
    display:flex;
    flex-wrap:wrap;
    gap:4px;
}

.subtexto-inline{
    font-size:12px;
    color:#7a7468;
    font-weight:400;
    letter-spacing:0;
    margin-left:4px;
}

.lista-recientes{
    display:flex;
    flex-direction:column;
    gap:4px;
}


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

.reciente-item{
    padding:10px 12px;
    border-bottom:1px solid #e1dbcf;
    background:transparent;

    cursor:pointer;
    transition:background 0.15s ease, border 0.15s ease, padding 0.15s ease;
}

/* HOVER */
.reciente-item:hover{
    border-color:#cfc8bb;
    background:#f7f4ee;
}

/* ACTIVO */
.reciente-item.activo{
    background:#f6f9f9;   /* 🔴 más ligero */
    border-left:2px solid #375e65;
    padding-left:10px;
}


/* =========================================================
   CONTENIDO ITEM
   ========================================================= */

.reciente-item .tipo{
    font-size:10px;
    color:#a39b8a;
    letter-spacing:0.5px;
}

.reciente-item .titulo{
    font-size:13px;
    font-weight:500;
    color:#375e65;
    margin:2px 0;
}

.reciente-item .preview{
    font-size:11.5px;
    color:#7a7468;
    line-height:1.3;
}


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


/* =========================================================
   ESTADO VACÍO
   ========================================================= */

.estado-vacio{
    padding:20px;
    text-align:center;
}

.titulo-vacio{
    font-size:13px;
    font-weight:500;
    color:#375e65;
}

.texto-vacio{
    font-size:12px;
    color:#7a7468;
    margin-top:4px;
}

/* =========================================================
   META SUPERIOR (TIPO + TIEMPO)
========================================================= */

.reciente-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:4px;
}

.tiempo-reciente{
    font-size:10px;
    color:#9b9385;

    font-family:"Inter", sans-serif;
    font-weight:400;
    letter-spacing:0.2px;
}