/* 전체 페이지 설정 */
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: hidden;
}

/* 모바일 메뉴 컨테이너 */
.mobile-menu-container {
    width: 100vw;
    height: 100vh;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 사용자 정보 섹션 스타일 */
.user-info-section {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e5e6;
    background-color: white;
}

.user-info-left {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.logout-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background-color: #f8f9fa;
    color: var(--cau-blue);
}

/* 모바일 메뉴 아이템 스타일 */
.mobile-menu {
    flex: 1;
    background-color: white;
}

.mobile-menu-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.mobile-menu-item:hover {
    background-color: #f8f9fa;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.menu-item-left {
    display: flex;
    align-items: center;
}

.menu-arrow {
    color: #ccc;
    font-size: 0.8rem;
}

/* 호버 효과 */
.mobile-menu-item:hover .menu-arrow {
    color: var(--cau-blue);
}