.content {
    position: fixed;
    padding-top: 102px;
    padding-left: 232px;
    background-color: #f8f9fa;
    z-index: -1;
    height: 100%;
    box-sizing: border-box;
}

.inner-content {
    padding: 50px;
    overflow: auto;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    scrollbar-color: gray;
    scrollbar-width: thin;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-arrow {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.back-arrow:hover {
    height: 32px;
    width: 32px;
    background-color:  #e6e6e6;
    border-radius: 16px;
    transform: scale(1.05);
    transition-delay: 10ms;
}

.content h1 {
    font-size: 2.5em;
    color: black;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 1.5em;
    color: black;
    margin-top: 30px;
    margin-bottom: 0px;
}

.content p, .content ul {
    font-size: 1em;
    color: black;
    line-height: 1.3;
    margin-top: 0px;
}

header {
    justify-content: flex-start !important;
}

.header-icons {
    visibility: hidden;
}

@media(max-width: 830px) {
    .content {
        padding-left: 0;
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .inner-content {
        padding-top: 0;
    }
    .read-only {
        padding-bottom: 0;
    }
}
@media(max-width: 500px) {
    .inner-content {
        padding: 0 20px 50px 20px;
    }
}
