@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

body {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 3vw;
    font-weight: bold;
    line-height: 3.5vw;
    color: whitesmoke;
    background-color: #1F2739;
}

h1 {
    text-align: center;
    color: #4DC3FA;
    line-height: 1.5;
}

.blue {
    color: #185875;
}

.yellow {
    color: #FFF842;
}

.container {
    text-align: left;
    overflow: hidden;
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    display: table;
    padding: 0 0 1em 0;
}

.container th h1 {
    font-weight: bold;
    text-align: left;
    color: #185875;
}

.container table {
    width: 100%;
    table-layout: fixed;
}

.container td:first-child {
    width: 15%; 
}

.container td {
    word-break: break-word;
    -webkit-box-shadow: 0 2px 2px -2px #0E1119;
    -moz-box-shadow: 0 2px 2px -2px #0E1119;
    box-shadow: 0 2px 2px -2px #006974;
    border: 1px solid rgb(0, 238, 255);
    border-radius: 10px;
    min-width: 15%;
}

.container td,
.container th {
    padding-bottom: 2%;
    padding-top: 2%;
    padding-left: 2%;
}

.container tr:nth-child(odd) {
    background-color: #323C50;
}

.container tr:nth-child(even) {
    background-color: #2C3446;
}

.container th {
    background-color: #1F2739;
}

.container td:first-child {
    color: whitesmoke;
}

.container tr:hover {
    background-color: #464A52;
    -webkit-box-shadow: 0 6px 6px -6px #0E1119;
    -moz-box-shadow: 0 6px 6px -6px #0E1119;
    box-shadow: 0 6px 6px -6px #0E1119;
}

.container td:hover {
    background-color: #FFF842;
    color: #403E10;

    box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
    transform: translate3d(6px, -6px, 0);

    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: line;
}

@media (max-width: 800px) {

    .container td:nth-child(4),
    .container th:nth-child(4) {
        display: none;
    }
}

.navbar {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #263343;
    padding: 8px 12px;
}

.navbar__logo {
    font-size: 1em;
    color: white;
}

.navbar__logo i {
    color: #d49466
}

.navbar__menu {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.navbar__menu li {
    padding: 8px 12px;
}

.navbar__menu li:hover,
.dropdown:hover .dropbtn {
    background-color: #d49466;
    border-radius: 4px;
}

.navbar__icons {
    list-style: none;
    color: white;
    display: flex;
    padding-left: 0;
}

.navbar__icons li {
    padding: 8px 12px;
}

a.white {
    text-decoration: none;
    color: white;
}


.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown {
    float: left;
    overflow: hidden;
    text-align: center;
}

.dropdown .dropbtn {
    font-size: 1em;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    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;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 24px;
    }

    .navbar__menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    .navbar__icons {
        justify-content: center;
        width: 100%;
    }

    .dropbtn {
        justify-content: center;
        width: 100%;
    }

    .dropdown {
        justify-content: center;
        width: 100%;
    }
}

a.linked:link {
    color: blue;
    background-color: #FFF842;
    border-radius: 8px;
    padding:5px;
    text-decoration: underline;
    text-underline-position: under;
}

a.linked:visited {
    color: blue;
    background-color: #FFF842;
    text-decoration: underline;
}

a.linkedTitle:link {
    color: rgb(151, 245, 255);
    background-color: transparent;
    text-decoration: underline;
    text-underline-position: under;
}

a.linkedTitle:visited {
    color: rgb(151, 245, 255);
    background-color: transparent;
    text-decoration: underline;
}

.SUM {
    text-align: center;
    color: rgb(151, 245, 255);
}

.styled-list {
    background-color: #141a28; 
    border-radius: 20px; 
    padding: 20px; 
    margin: 20px auto; 
    list-style-type: disc; 
    width: 85%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.7), 
                inset -5px -5px 10px rgba(56, 78, 134, 0.5);
}

.styled-list li {
    padding: 1%; 
    list-style-position: inside; 
}
