/* ========================================
   Pulldown Display Box
   - プルダウン選択の表示部分の共通スタイル
   - レギュレーション選択、プール選択などで使い回し可能
   ======================================== */

.pulldown-display-box {
    background: #f7fafc;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem; /* レギュレーション選択と同じサイズ */
    color: #4a5568;
    line-height: 1.5;
    min-height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.pulldown-display-box:hover {
    border-color: #667eea;
    background: #edf2f7;
}

