@charset "UTF-8";

/* 기본 폰트 및 배경 설정 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f8fafc;
}

/* 사이드바 메뉴 스타일 */
.menu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s ease-in-out;
    border-left: 4px solid transparent;
}

.menu-link:hover {
    background-color: #eef2ff;
    color: #3b82f6;
    transform: translateX(5px);
}

.menu-link.active {
    background-color: #e0e7ff;
    color: #1d4ed8;
    border-left-color: #3b82f6;
}

.menu-title {
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

/* 푸터 링크 고유 스타일 */
.footer-link {
    text-align: center;
    text-decoration: none;
    color: #555555;
}

.footer-counter-container {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}