/* Shared site styles for NCHM pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #EEEEEE;
    font-family: 'Noto Sans KR', 'Lucida Grande', Arial, sans-serif;
    font-size: 13px;
    text-align: left;
    color: #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #69F;
    color: white;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0 0 0 20px;
    list-style: none;
}

.nav-menu a {
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Noto Sans KR', 'Lucida Grande', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.nav-menu a:hover {
    color: #ffcc00;
    background-color: transparent;
    text-decoration: none;
}

.hamburger {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    display: block;
}

/* 눌렀을 때 가로 3줄 -> 세로 3줄 */
.hamburger.active {
    flex-direction: row;
    gap: 4px;
}

.hamburger.active span {
    width: 3px;
    height: 25px;
    margin: 0;
}

.content {
    padding: 40px;
}

.content table {
    max-width: 100%;
}

.content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
.hamburger {
    display: flex;
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #69F;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    z-index: 9999;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 15px 0;
    list-style: none;
}

    .content {
        padding: 20px;
    }
}
