/**
 * CF7 Event Booking - Frontend Styles
 */

/* ラジオボタンコンテナ */
.wpcf7-form-control-wrap [data-event-slug] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 各スロット */
.cf7eb-slot {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.cf7eb-slot:hover {
    border-color: #0073aa;
    background: #f7f7f7;
}

.cf7eb-slot input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.cf7eb-slot-label {
    flex: 1;
    font-weight: 500;
}

.cf7eb-slot-capacity {
    color: #333;
    font-size: 0.9em;
    font-weight: bold;
    margin-left: 16px;
}

/* 満員スロット */
.cf7eb-slot.is-full {
    background: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.7;
}

.cf7eb-slot.is-full:hover {
    border-color: #ddd;
    background: #f5f5f5;
}

.cf7eb-slot.is-full .cf7eb-slot-label {
    color: #999;
    text-decoration: line-through;
}

.cf7eb-slot.is-full .cf7eb-slot-capacity {
    color: #c00;
}

/* 選択済みスロット */
.cf7eb-slot.is-selected {
    border-color: #0073aa;
    background: #e7f3ff;
}

/* エラー状態 */
.wpcf7-not-valid .cf7eb-slot {
    border-color: #dc3232;
}

/* 人数選択の残り枠表示 */
.cf7eb-remaining-notice {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff8e5;
    border: 1px solid #ffcc00;
    border-radius: 4px;
    font-size: 0.9em;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .cf7eb-slot {
        flex-wrap: wrap;
    }

    .cf7eb-slot-capacity {
        /*width: 100%;*/
        margin-left: 30px;
        margin-top: 0;
    }
}
