/* ========================================
   Checkbox List Styles
   - Reusable checkbox list component
   - Used in overlays and forms
   ======================================== */

/* チェックボックスリストコンテナ */
.checkbox-list {
    margin: 10px 0;
}

/* チェックボックスリストアイテム */
.checkbox-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.checkbox-list-item:last-child {
    border-bottom: none;
}

.checkbox-list-item label {
    font-weight: 400;
    color: #4a5568;
    font-size: 0.75rem;
    cursor: pointer;
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
}

/* チェックボックスグリッド（非表示、データ保持用） */
.checkbox-grid {
    display: none;
}

/* チェックボックスリスト見出し */
.checkbox-list-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    padding: 0.75rem 0 0.5rem 0;
    margin-top: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.checkbox-list-heading:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* ========================================
   Checkbox Label Styles
   - チェックボックスラベルの共通スタイル
   ======================================== */

/* フレックスチェックボックスラベル */
.checkbox-label--flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* 小さいチェックボックス */
.checkbox-input--small {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

/* チェックボックスラベルテキスト */
.checkbox-label-text {
    font-size: 0.9rem;
    color: #4a5568;
}

