html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

.main-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.toolbar {
    height: 60px;
    background-color: #f0f0f0;
    flex-shrink: 0;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.side-sections-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    overflow: hidden;
}

.left-side, .right-side {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    min-width: 0;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
}

.right-side {
    border-right: none;
    padding: 0 15px;
}

.cm-editor {
    height: 100%;
}

.cm-editor .cm-focused {
    outline: none;
}

@media (max-width: 1000px) {
    .side-sections-container {
        flex-direction: column;
    }

    .left-side, .right-side {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .right-side {
        border-bottom: none;
    }
}
img {
    height: auto;
    width: 60%;
}
table, th, td {
    border: 1px solid;
    border-collapse: collapse;
}
