/* 모바일 바텀시트 기본 스타일 */
#property-list-mobile {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    max-height: 280px;
    background: white;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#property-list-mobile.show {
    bottom: 0;
    max-height: 450px;
}

#property-list-mobile.expanded {
    bottom: 0;
    max-height: 80vh;
}

#property-list-mobile.dragging {
    transition: none;
}

/* 토글 버튼 스타일 */
#property-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1362FB;
    color: white;
    text-align: center;
    padding: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    display: block;
}

/* 드래그 바 스타일 */
.drag-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 8px auto;
}

/* 헤더 고정 스타일 */
#list-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-bottom: 1px solid #ccc;
    flex-shrink: 0;
}

/* 스크롤 가능한 콘텐츠 영역 */
.property-list-scroll-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

