h1{
    padding: 30px 0 30px 0;
    margin-left: 10%;
    font-size: 2em;
}

.bold{
    font-weight: bold;
}

.italic{
    font-style: italic;
}

/*OVERVIEW*/

#overview_container{
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
}

#overview_left_container {
    width: 38%;
}

#overview_right_container {
    width: 58%;
}

    #overview_description p{
        font-size: 1em;
        text-align: justify;
        line-height: 25px;
    }

    .overview_description_title{
        font-size: 1.2em;
        font-weight: 600;
        margin: 15px 0 5px 0;
    }

#overview_carousel {
    position: relative;
    background-color: dimgrey;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(140,140,140,0.5);
}

#overview_carousel:hover .carousel_btn{
    display: block;
}

    #overview_carousel img {
        border-radius: 10px;
    }

.carousel_image {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.carousel_image.active{
    opacity: 1;
}

.carousel_btn {
    display: none;
    background: none;
    outline: none;
    border: none;
    z-index: 10;
    cursor: pointer;
    font-size: 2em;
    color: ghostwhite;
    transition: linear 0.1s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}

.carousel_btn:hover{
    opacity: 0.6;
    transition: linear 0.1s;
}

#carousel_prev_btn {
    left: 1%;
}

#carousel_next_btn {
    right: 1%;
}

#carousel_counter{
    font-size: 0.8em;    
    background-color: darkslategrey;
    padding: 2px 5px 2px 5px;
    border-radius: 20px;
    position: absolute;
    top: 94%;
    left: 50%;
    transform:translateX(-50%);
    color: white;
    font-weight: 400;
}

#overview_link_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    gap: 20px;
}

#overview_link_container p{
    font-size: 2em;
}

    #overview_link_container a {
        background-color: #3A5BC7;
        text-decoration: none;
        font-size: 1.2em;
        padding: 10px;
        text-align: center;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        color: white;
        font-weight: bold;
        box-shadow: 0 0 30px rgba(140,140,140,0.2);
        transition: linear 0.15s;
    }

        #overview_link_container a:hover {
            background-color: #4d71e7;
            transition: linear 0.15s;
        }

/*DOCUMENTATION*/

#doc_container{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#doc_left_container{   
    width: 20%;
}

#doc_right_container {
    width: 75%;  
}

#doc_parts_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#doc_parts_nav_container{
    width: 100%;   
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 10px;
}

    #doc_parts_nav_container button {
        width: 49%;
        height: 60px;
        background: none;
        border: 1px solid;
        border-radius: 5px;
        font-size: 1em;
        color: darkslategrey;
        background-color: none;
        transition: linear 0.1s;
    }

        #doc_parts_nav_container button:hover {
            background-color: whitesmoke;
            cursor: pointer;
            color: black;
            transition: linear 0.1s;
        }

        #doc_parts_nav_container button.disabled{
            display: none;
        }

#doc_parts_prev_btn {
    position: relative;
    text-align: right;
}

    #doc_parts_prev_btn p {
        margin-right: 10px;
    }

#doc_parts_next_btn {
    position: relative;
    text-align: left;
}

    #doc_parts_next_btn p {
        margin-left: 10px;
    }

.doc_parts_nav_btn_arrow{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    font-size: 1.2em;
}

.doc_parts_nav_btn_arrow.prev{
    left: 20px;
}

.doc_parts_nav_btn_arrow.next{
    right: 20px;
}

.doc_parts_nav_btn_text {
    font-size: 0.8em;
    font-weight: 600;
    color: darkslategrey;
}

.doc_parts_nav_btn_title {
    font-size: 1.2em;
}

.doc_part {
    display: none;
}

.doc_part.active{
    display: block;
}

.doc_part_btn{
    width: 100%;
    height: 40px;
    font-size: 1em;
    font-weight: 500;
    color: darkslategrey;
    text-align: left;
    padding: 0 0 0 10px;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 6px;
    transition: linear 0.1s;
}

    .doc_part_btn:hover {
        transition: linear 0.1s;
        background-color: whitesmoke;
        color: black;
    }

    .doc_part_btn.active {
        color: blue;
        background-color: lightblue;
    }

        .doc_part_btn.active:hover {
            transition: linear 0.1s;
            background-color: lightskyblue;
        }

.doc_part_title{
    padding-bottom: 20px;
    font-size: 1.5em;
    font-weight: 500;
}

.table_start {
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.table_in {
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
}

.table_end {
    border: 1px solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

summary {
    padding: 15px 15px 15px 20px;
    cursor: pointer;
    font-size: 1.2em;
    color: grey;
    transition: linear 0.1s;
    width: 100%-30px;   
}

    summary:hover {
        transition: linear 0.1s;
        color: black;
    }

.no_select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.doc_dropdown_content{
    width: 80%;
    margin-left: 10%;
}

.doc_dropdown_title{
    font-size: 1.3em;
    margin: 15px 0 15px 0;
}

.doc_dropdown_content p {
    color: darkslategrey;
}

.doc_dropdown_content li {
    color: darkslategrey;
}

.doc_dropdown_content code {
    border-radius: 10px;
}

.doc_dropdown_img_container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 20px;
}

.doc_dropdown_img_container img{
    width: 48%;
}

@media screen and (max-width: 1400px) {
    #overview_container{
        display: block;
    }

    #overview_description{
        width: 100%;       
    }

    #overview_left_container {
        width: 100%;
        margin-bottom: 30px;
    }

    #overview_right_container {
        width: 100%;
        margin-bottom: 30px;
    }

    #doc_left_container {
        display: none;
    }

    #doc_right_container{
        width: 100%;
    }

    .doc_parts_nav_btn_title {
        font-size: 1em;
    }

    .doc_dropdown_img_container {
        display: block;
    }

    .doc_dropdown_img_container img {
        width: 100%;
    }
}












