/* Foro Estudio v5 – dark mode */
:root{
    --bg:#12121b;
    --card:#1e1e2b;
    --text:#e5e7eb;
    --muted:#7c7f90;
    --accent:#8b5cf6;
    --accent-hover:#7c3aed;
    --danger:#ef4444;
}

body{background:var(--bg);color:var(--text);}

.fe-container{max-width:960px;margin:0 auto;padding:1rem;}

.fe-card{
    background:var(--card);
    border-radius:.75rem;
    box-shadow:0 0 0 1px #2e2e3e;
    padding:1.25rem;
    margin-bottom:1.5rem;
}
.fe-card--compact{display:flex;gap:1rem;align-items:flex-start;}

h1,h2{margin:0 0 .6rem;font-weight:600;}

.fe-meta{font-size:.85rem;color:var(--muted);}

.fe-avatar{
    width:48px!important;
    height:48px!important;
    border-radius:50%!important;
    object-fit:cover!important;
}

.fe-btn{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    border:none;
    border-radius:.5rem;
    padding:.45rem 1rem;
    font-weight:600;
    cursor:pointer;
}
.fe-btn:hover{background:var(--accent-hover);}
.fe-btn--danger{background:var(--danger);}

.fe-input,
.fe-textarea{
    width:100%;
    background:#2a2a3b;
    border:1px solid #3d3d4f;
    color:var(--text);
    border-radius:.5rem;
    padding:.65rem;
    margin-bottom:.8rem;
    font-family:inherit;
}
.fe-textarea{min-height:120px;}

.fe-link{color:var(--accent);}
.fe-link:hover{text-decoration:underline;}

.fe-list{list-style:none;padding:0;margin:0;}

.fe-comment{display:flex;gap:1rem;margin-bottom:1rem;}
.fe-comment-body{flex:1;}

.fe-pagination{display:flex;gap:.5rem;margin-bottom:1.5rem;}
.fe-page{
    padding:.3rem .65rem;
    border-radius:.4rem;
    background:#2e2e3e;
    color:var(--text);
}
.fe-page--current{background:var(--accent);}

.fe-delete{
    background:none;
    border:none;
    color:var(--danger);
    font-size:1.1rem;
    cursor:pointer;
    margin-left:.5rem;
}

/* ───── Colores por rango ───── */
.fe-author.admin{
    color:#ef4444;      /* rojo */
    font-weight:600;
}
.fe-author.mod{
    color:#3b82f6;      /* azul */
    font-weight:600;
}