.navegador {
    width: 600px;
    height: 400px;
    border-radius: 8px;
    background-color: #bcbcbc;
    font-family: sans-serif;
    border: 2px solid black;
    display: flex;
    flex-direction: column;

    button {
        font-family: sans-serif;
    }

    .barra-titulo {
        display: flex;
        align-items: center;
        padding: 0 8px 0 8px;
        border-bottom: 2px solid black;
        gap: 4px;
    }

    .pestana {
        border-radius: 12px 12px 0 0;
        background-color: #a6b7af;
        width: 100px;
        border-width: 2px 2px 0 2px;
        border-color: black;
        border-style: solid;
        margin-bottom: -2px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding: 4px 8px 4px 8px;
        align-items: center;
    }

    .pestana.seleccionada {
        background-color: #ccfee5;
    }

    .relleno {
        flex-grow: 1;
    }

    .botones {
        font-family: monospace;
        font-weight: bold;
        font-size: 1.5em;
        margin-bottom: 4px;
    }

    .barra-navegar {
        padding: 8px;
        display: flex;
        align-items: center;
        background-color: #ccfee5;
        gap: 4px;
    }

    .ruta {
        background-color: #f2f2f2;
        padding: 6px 12px;
        border-radius: 12px;
        border: 2px solid black;
        flex-grow: 1;
        font-weight: bold;
        text-align: left;
    }

    .cuerpo {
        flex-grow: 1;
        background-color: #f2f2f2;
        padding: 16px;
        border: 1px solid black;
        margin: 0 -1px;
        overflow-y: scroll;
        p {
            font-size: 20px;
            text-align: left;
        }
    }

    .pie {
        background-color: #ccfee5;
        height: 40px;
        border-radius: 0 0 8px 8px;
        font-style: italic;
        display: flex;
        align-items: center;
        padding: 0 16px;
    }
}
