/* フィルタウィンドウのスタイル */
#filter-window {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 300px;
    max-height: 260px;
    background: rgba(50, 50, 50, 0.9);
    color: white;
    border-radius: 8px;
    z-index: 1100;
    overflow: auto;
}

/* ドラッグ専用ハンドル */
#filter-drag-handle {
    width: 100%;
    height: 30px;  /* クリック範囲を広げる */
    background: rgba(30, 30, 30, 0.95);  /* 目立つ色 */
    cursor: grab;
    text-align: center;
    padding-top: 5px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    user-select: none; /* 選択不可 */
}

/* ドラッグ中のカーソル */
#filter-drag-handle:active {
    cursor: grabbing;
}
