* { box-sizing: border-box; }

body {
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #f4f5f7;
    color: #222;
}

.cabecera {
    background: #2c3e50;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cabecera .logo {
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
}

.cabecera nav a, .cabecera nav span {
    color: #ecf0f1;
    margin-left: 16px;
    text-decoration: none;
}

.cabecera nav a:hover { text-decoration: underline; }

.contenedor {
    max-width: 800px;
    margin: 24px auto;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.formulario { display: flex; flex-direction: column; gap: 6px; }
.formulario label { font-weight: 600; margin-top: 8px; }
.formulario input, .formulario textarea, .formulario select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
.formulario button {
    margin-top: 16px;
    padding: 10px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.formulario button:hover { background: #1a252f; }

.alerta { padding: 10px 14px; border-radius: 4px; margin-bottom: 12px; }
.alerta-error { background: #fdecea; color: #a12622; border: 1px solid #f5c2c0; }
.alerta-ok { background: #e8f7ee; color: #1e7e34; border: 1px solid #b7e4c7; }

.lista-categorias, .lista-temas, .lista-respuestas { list-style: none; padding: 0; }
.lista-categorias li, .lista-temas li, .lista-respuestas li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.meta { color: #777; font-size: .85em; }

.boton {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 14px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.contenido-post { margin: 16px 0; line-height: 1.5; }

.contenido-respuesta {
    line-height: 1.5;
    padding: 4px 6px;
    border-radius: 4px;
}
.contenido-respuesta[contenteditable="true"] {
    cursor: text;
    outline: 1px dashed transparent;
}
.contenido-respuesta[contenteditable="true"]:focus {
    outline: 1px dashed #2c3e50;
    background: #fbfbfb;
}

.acciones-respuesta {
    margin-top: 6px;
    display: flex;
    gap: 8px;
}
.acciones-respuesta button {
    font-size: .8em;
    padding: 4px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}
.acciones-respuesta button:hover { background: #f0f0f0; }

.comentario-eliminado {
    color: #999;
    font-style: italic;
}

.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    padding: 20px 30px;
    border-radius: 8px;
    z-index: 999;
    text-align: center;
}
.loading p { margin: 0; font-size: 1.1em; }

.tabla-admin { width: 100%; border-collapse: collapse; }
.tabla-admin th, .tabla-admin td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.pie {
    text-align: center;
    color: #888;
    padding: 20px;
    font-size: .85em;
}
