/* Estilos unificados para Cultura Científica (CC) */

.caja-test, .caja-resultados {
    max-width: 850px;
    max-width: 750px;
    margin: 15px auto;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #4682B4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-family: Verdana, sans-serif;
    overflow: hidden;
}

.cabecera-p, .cabecera-res {
    background: #4682B4;
    padding: 12px 25px;
    color: white;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    align-items: center;
}

/* Cuerpo y Preguntas */
.cuerpo-p { padding: 25px 30px; text-align: left; }
.cuerpo-p { padding: 25px 20px; text-align: left; }
.texto-p { font-size: 17px; color: #333; margin-bottom: 20px; line-height: 1.4; }
.texto-p { font-size: 16px; color: #333; margin-bottom: 5px; line-height: 1.4; }

.contenedor-opciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 5px;
}

.opcion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #e0e7ed;
    border-radius: 8px;
    cursor: pointer;
    background: #fdfdfd;
    font-size: 14px;
    transition: 0.2s;
}

.opcion-item:hover { background: #f0f7ff; border-color: #4682B4; }
.opcion-item input { margin-right: 15px; transform: scale(1.1); }

/* Columnas de Resultados (ci3.php) */
.contenedor-columnas { display: flex; flex-wrap: wrap; padding: 30px; gap: 30px; align-items: center; }
.col-izquierda { flex: 1.3; text-align: center; }
.col-derecha { flex: 1; text-align: left; }
.img-gauss { width: 100%; max-width: 350px; height: auto; border-radius: 10px; }

/* Botones y Feedback */
.footer-p, .btn-footer {
    padding: 18px 40px;
    background: #f8fafc;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-enviar, .btn-repetir {
    background: #2E8B57;
    color: white !important;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-repetir { background: #4682B4; }
.cuadro-comentario { 
    background: #f4f7f9; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 0.9em; 
    line-height: 1.5; 
    border: 1px solid #e0e6ed; 
}