/* unified_graph.html 用のスタイル */

/* グラフコンテナとローディング表示のスタイルをインポート */
@import url('graph.css');

/* ボタンの無効化スタイル */
button:disabled {
    background-color: var(--color-gray-500) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* グラフと店舗フィルタを横並びにするコンテナ */
.graph-with-filter {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* グラフエリア */
#graph {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* 店舗選択サイドバー */
.store-filter-sidebar {
    width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    flex-shrink: 0;
}

.store-filter-sidebar h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--color-text);
}

/* 店舗チェックボックスラベル */
.store-checkbox-label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.9rem;
}

.store-checkbox-label:hover {
    color: var(--color-link);
}

.store-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

/* WiFi周波数帯の表示色 */
.freq-24ghz {
    color: var(--color-warning);
    font-weight: bold;
}

.freq-5ghz {
    color: var(--color-success);
    font-weight: bold;
}
