/* 하단 메뉴 스타일 */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 26rem;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-around;
    padding: 0.25rem 0;
    box-shadow: 0 -0.125rem 0.625rem rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.1875rem 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    min-width: 3.75rem;
    text-decoration: none;
    color: inherit;
}

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

.menu-item i {
    font-size: 1rem;
    margin-bottom: 0.0625rem;
}

.menu-item span {
    font-size: 0.5625rem;
    font-weight: 500;
    color: #666;
}

.menu-item.active {
    color: #f59e0b;
}

.menu-item.active span {
    color: #f59e0b;
}

/* 하단 메뉴를 위한 여백 */
.content-with-bottom-menu {
    padding-bottom: 200px; /* 광고 영역을 고려하여 여백 증가 */
}

/* 채팅 페이지용 하단 메뉴 (요약 버튼 포함) */
.bottom-menu-chat .menu-item {
    min-width: 3.5rem;
}

.bottom-menu-chat .menu-item i {
    font-size: 0.9rem;
}

.bottom-menu-chat .menu-item span {
    font-size: 0.5rem;
}
