/* Ocultar header y footer del tema */
.site-header,
#masthead,
.main-header,
.site-footer,
#colophon,
.main-footer,
.footer-widgets,
.site-info,
#header,
header,
hr,
#footer {
    display: none !important;
}

/* Asegurar que el contenido del libro ocupe todo el ancho */
.libro-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
}

/* Estilos para el mensaje de confirmación */
.mensaje-confirmacion {
    background-color: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mensaje-confirmacion .titulo-confirmacion {
    color: #28a745;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.mensaje-confirmacion .numero-reclamo {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    padding: 10px 0;
    border-top: 1px solid #dee2e6;
    margin-top: 10px;
}

/* Botón de retorno */
.boton-retorno {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1D3A72;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.boton-retorno:hover {
    transform: scale(1.05);
    color: #FFBD59;
    text-decoration: none;
}

.char-counter {
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

textarea.limit-reached {
    border-color: #dc3545;
}

.char-counter.limit-reached {
    color: #dc3545;
    font-weight: bold;
} 