/* css/ver_trabajo.css - Estilos para el visor de trabajos */

body { 
    margin: 0; 
    font-family: sans-serif; 
}

.barra-superior {
    background: #0078D4;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barra-superior button {
    background: white;
    color: #0078D4;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.volver { 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
}

.contenedor-pdf { 
    width: 100%; 
    height: calc(100vh - 60px); 
}

.pdf-object { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

#transcripcion {
    margin: 20px auto;
    max-width: 90%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fafafa;
    line-height: 1.6;
    font-size: 1rem;
    white-space: pre-wrap;
    overflow-y: auto;
    max-height: 300px;
}

#transcripcion span { display: inline; }
#transcripcion .resaltado { background: yellow; transition: background 0.3s ease; }

.contenedor-pdf {
    margin: 20px auto;
    max-width: 90%;
}

