body {
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    overflow: hidden;
    background-color: #676767;
    border-radius: 5px;
}

.navbar a {
    float: left;
    font-size: 12pt;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


.navbar a.active {
    background-color: #03b7c7;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 12pt;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #018f9b;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f0f0f0;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.paragrafOptimizer {
    /*text-indent: 25px;*/
    white-space: pre-wrap;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

    .navbar {
        
        overflow: hidden;
        background-color: #676767;
        border-radius: 5px;
    }

    .navbar a {
        font-size: 10pt;
        float: left;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }


    .navbar a.active {
        background-color: #03b7c7;
    }

    .dropdown {
        float: left;
        overflow: hidden;
    }

    .dropdown .dropbtn {
        font-size: 10pt;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: #018f9b;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f0f0f0;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    h1 {
        font-size: 14pt;
    }

}

/*COMBO BOX*/
.accordion-box {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-box summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: bold;
    font-size: 16px;
    list-style: none;
}

.accordion-box summary::-webkit-details-marker {
    display: none;
}

/* WARNA TIAP BOX */
.box1 summary {
    background: #e8f1ff;
}

.box2 summary {
    background: #e9f7ef;
}

.box3 summary {
    background: #f3e8ff;
}

/* isi */
.accordion-content {
    padding: 16px;
    background: #ffffff;
}

/* sub accordion */
.sub-accordion {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.sub-accordion summary {
    padding: 10px 14px;
    font-weight: bold;
    font-size: 14px;
    background: #f5f5f5;
}

.sub-accordion-content {
    padding: 12px;
    background: #fafafa;
}

/* Content Filter */
.content-filter-box {
    margin-top: 10px;
    padding: 14px;
    background: #f4f4f4;
    border-radius: 8px;
}

.content-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* mobile */
@media screen and (max-width: 900px) {
    .content-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .content-filter-grid {
        grid-template-columns: 1fr;
    }
}
