/* =========================
   DATE CHECKBOX PILL
========================= */

.date-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 2px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    user-select: none;
}

.date-pill input {
    display: none;
}

.date-pill span {
    font-size: 15px;
    color: #333;
}

.date-pill:hover {
    border-color: #999;
}

.date-pill:has(input:checked){
    border-color: #FFD700;
   
}
.date-pill.active-date {
 background: #FFD700;
}
.date-pill:has(input:checked) span,
.date-pill.active-date span {
    color: #000;
    font-weight: 600;
}

/* =========================
   DATE BLOCK
========================= */

.date-block {
    background: #fffef3;
    border-radius: 18px;
    margin-bottom: 30px;
}

/* =========================
   SLOT CARD (TIME)
========================= */

.slot-card {
    background: #ffffff;
    border: 1.5px solid #e2e2e2;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 22px;
}

.slot-header {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    color: #222;
}

/* =========================
   SLOT INFO GRID
========================= */

.slot-info {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

/* =========================
   VENUE BLOCK
========================= */

.venue-block {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
}

.venue-name {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

/* =========================
   TOPIC CARD (RADIO)
========================= */

.topic-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-card {
    display: block;
    cursor: pointer;
}

.topic-card input {
    display: none;
}

.topic-card .card-body {
    border: 2px solid #dcdcdc;
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    transition: all 0.25s ease;
}

.topic-card:hover .card-body {
    border-color: #999;
}

/* Selected */
.topic-card input:checked + .card-body {
    border-color: #FFD700;
    background: #fffdf2;
}

/* =========================
   CARD CONTENT
========================= */

.time-badge {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.topic-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.speakers {
    font-size: 13px;
    color: #666;
    margin-left: 0;
}

/* =========================
   PREVIEW SECTION
========================= */

#preview_slots {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.preview-card {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 20px;
    background: #fafafa;
    width: 100%;
}

.preview-slot {
    border-left: 4px solid #FFD700;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}

.preview-slot h6 {
    margin-bottom: 8px;
    color: #333;
}

.preview-slot p {
    margin: 0;
    font-size: 14px;
}

/* =========================
   BUTTONS
========================= */

#back_to_slots {
    min-width: 120px;
    background: #E91E63;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 0;
}
.slot-card-design{
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {
    .date-pill {
        min-width: 100%;
    }
    .preview-slot {
        width: 100%;
    }
    .slot-card-design .topic-card{
        width: 100%;
    }
}

@media (min-width: 768px) {
    .venue-block {
        width: 48%;
    }
    .slot-card-design .topic-card{
        width: 49%;
    }
    .date-block {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .venue-block {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .preview-slot {
        width: 32%;
    }
    
}
       
@media (min-width: 768px) and (max-width: 991px) {
    .preview-slot {
        width: 48%;
    }
}