/**
 * Estilos para la página de aceptación de términos de estudios médicos
 */

 .terminos-aceptacion-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.terminos-aceptacion-wrapper h2 {
    color: #2a3045;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    font-size: 24px;
    text-align: center;
}

.datos-estudio {
    margin-bottom: 25px;
}

.datos-estudio p:last-child {
    margin-bottom: 0;
}

.terminos-contenido {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 14px;
}

#formulario-aceptacion-terminos {
    margin-top: 20px;
}

.aceptacion-checkbox {
    margin-bottom: 20px;
}

.aceptacion-checkbox label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.aceptacion-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.botones-accion {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.boton-aceptar, 
.boton-cancelar {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boton-aceptar {
    background-color: #2a3045;
    color: white;
    border: none;
}

.boton-aceptar:hover {
    background-color: #385bce;
}

.boton-cancelar {
    background-color: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.boton-cancelar:hover {
    background-color: #e0e0e0;
    color: #444;
}

.terminos-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 4px solid #c62828;
}

/* Estilos para la columna de admin de usuarios */
.estudio-aceptado {
    display: inline-block;
    background-color: #edf7ed;
    color: #1e9e1e;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 3px;
    font-size: 12px;
    cursor: help;
}

/* Responsive */
@media (max-width: 768px) {
    .terminos-aceptacion-wrapper {
        padding: 15px;
        margin: 15px;
    }
    
    .botones-accion {
        flex-direction: column;
    }
    
    .boton-aceptar, 
    .boton-cancelar {
        width: 100%;
        margin-bottom: 10px;
    }
}