body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row; /* stack vertically */
    font-family: "Computer Modern";
    font-size: 12pt;
}

#main-column {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #eee;
    display: flex;
    flex-direction: row; /* stack vertically */
    align-items: center;     /* horizontal centering */
    justify-content: center; /* vertical centering */
}

#content {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column; /* stack vertically */
    padding-left: 20px;
    overflow-y: auto;
    padding-right: 15px;
    background-color: whitesmoke;
    text-align: justify;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2), -5px 0 10px rgba(0, 0, 0, 0.2);
}

#sidebar {
    width: 0px;
    height: 90%;
    visibility: hidden;
    display: flex;
    flex-direction: column; /* stack vertically */
    overflow-y: auto;
}

#separator {
    width: 5px;
    cursor: e-resize;
}

#input-container {
    overflow: auto;
    width: 400px;
}

#status-bar {
    height: 30px;
    overflow: auto;
    background-color: #eee;
}

#status-bar button {
    height: 24px;
    margin: 3px;
}

#top-bar {
    height: 30px;
    overflow: auto;
    background-color: #eee;
}

#path-box, #titulo-box {
    height: 24px;
    margin-left: 5px;
}

#search-bar {
    margin: 8px;
    border-radius: 5px;
    border-style:solid;
}

#show-search-bar {
    border: none;
    height: 100vh;
    font-size: 16pt;
    background-color: #eee;
    cursor: pointer;
}

#volver-al-inicio {
    cursor: pointer;
    font-size: 50pt;
    margin-right: auto;
    margin-left: auto;
}

#editar {
    margin-right: auto;
    margin-left: auto;
    cursor: pointer;
}
