* {
    padding: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.page {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

nav {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 290px;
    max-height: 100vh;
    overflow-y: scroll;
}

nav::-webkit-scrollbar {
    width: 0;
}

.arrow {
    position: absolute;
    display: none;
    top: 0;
    right: 0;
	width: 0;
	height: 0;
    transition: .5s;
	border-top: 20px solid transparent;
	border-left: 40px solid rgb(0, 106, 78);
	border-bottom: 20px solid transparent;
}

.nav-box {
    display: flex;
    width: 100%;
    padding: 32px;
    height: 100%;
    min-height: 150px;
    max-width: 250px;
    min-width: 250px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: rgb(50, 50, 50);
    border-bottom: 1px solid rgb(100, 100, 100);
    cursor: pointer;
    line-height: 24px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.nav-box:hover {
    background: rgb(60, 60, 60);
}

.nav-box.active {
    background: rgb(0, 106, 78);
}

.content {
    position: relative;
    padding: 100px 72px;
    width: 100%;
}

.content-wrap {
    display: none;
    height: 100%;
    max-height: calc(100vh - 200px);
    overflow-y: scroll;
    overflow-x: visible;
}

.content-wrap::-webkit-scrollbar {
    width: 0;
}

.content-wrap:target {
    display: block;
}

header h5 {
    font-size: 28px;
    color: rgb(0, 106, 78);
}

header p {
    margin-top: 5px;
    font-size: 14px;
    color: rgb(100, 100, 100);
}

.content-nav {
    display: flex;
    max-width: 100%;
    margin-top: 16px;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.btn {
    padding: 8px 12px;
    border-radius: 5px;
    background: rgb(0, 106, 78);
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.btn:hover {
    background: rgb(50, 50, 50);
}

table {
    margin-top: 32px;
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid rgb(225, 225, 225);
}

td {
    min-width: 300px;
    padding: 12px;
}

.prodi-desc {
    margin-top: 64px;
}

.prodi-desc h2 {
    margin-bottom: 8px;
    font-size: 20px;
    color: rgb(100, 100, 100);
}

.prodi-desc p {
    margin-bottom: 32px;
    line-height: 24px;
    font-size: 14px;
    color: rgb(100, 100, 100);
}

.prodi-desc ol {
    margin-bottom: 32px;
    font-size: 14px;
    color: rgb(100, 100, 100);
}

.prodi-desc li {
    line-height: 20px;
    margin: 12px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgb(225, 225, 225);
}

.prodi-desc .not-found {
    margin-top: 64px;
    font-size: 24px;
    color: rgb(200, 200, 200);
}


@media(max-width: 1100px) {
    nav {
        min-width: 250px;
    }
    
    .nav-box {
        padding: 24px;
        max-width: 210px;
        min-width: 210px;
    }

    .content {
        padding: 100px 24px;
    }

    td {
        min-width: 250px;
        max-width: 250px;
    }
}

@media(max-width: 800px) {
    nav {
        display: none;
    }
    header {
        text-align: center;
    }
    .content-nav {
        margin-top: 32px;
        justify-content: stretch;
    }
    .content-nav a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13px;
    }
    table {
        margin: 64px auto;
    }
    tr {
        display: block;
        margin-bottom: 16px;
    }
    td {
        display: block;
        margin-top: -16px;
    }

    tr td:nth-child(2) {
        font-size: 14px;
    }
}