/* Detail reservation slot chips (scoped to .business-detail-page) */

.business-detail-page .available-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.business-detail-page .slot-chip {
    width: 100%;
    min-width: 0;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #101B33;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.15;
    cursor: pointer;
    transition: 0.15s;
    text-align: left;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.business-detail-page .slot-chip:hover {
    border-color: #C9A84C;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.business-detail-page .slot-chip.active {
    border-color: #C9A84C;
    background: #FBF6EA;
    box-shadow: 0 12px 26px rgba(201, 168, 76, 0.16);
}

.business-detail-page .slot-chip.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.business-detail-page .slot-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(16, 27, 51, 0.18);
    flex-shrink: 0;
}

.business-detail-page .slot-chip.active::before {
    background: #C9A84C;
}

.business-detail-page .slot-time {
    color: #101B33;
    font-weight: 750;
    letter-spacing: -0.01em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.business-detail-page .slot-cap {
    color: #6B7280;
    font-weight: 700;
    font-size: 11.5px;
    padding: 4px 8px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    background: #F8FAFC;
    flex-shrink: 0;
}

.business-detail-page .capacity-note {
    margin-top: 10px;
    font-size: 12px;
    color: #6B7280;
}

.business-detail-page .availability-loader {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #6B7280;
}

.business-detail-page .availability-loader.is-visible {
    display: block;
}

.business-detail-page .availability-empty {
    margin-top: 12px;
    background: #F8FAFC;
    border: 1px dashed #E5E7EB;
    border-radius: 12px;
    padding: 12px;
    color: #6B7280;
    font-size: 13px;
}

@media (max-width: 992px) {
    .business-detail-page .available-slots {
        grid-template-columns: 1fr;
    }
    .business-detail-page .slot-chip {
        width: 100%;
    }
}

/* Çok dar sidebar durumunda iki kolon yerine tek kolon */
@media (max-width: 420px) {
    .business-detail-page .available-slots { grid-template-columns: 1fr; }
}

/* Personel tercihi — opsiyonel */
.business-detail-page .staff-pref-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 0;
}

.business-detail-page .staff-pref-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 0.875rem;
    cursor: pointer;
    margin: 0;
}

.business-detail-page .staff-select-wrap {
    margin-top: 10px;
}

.business-detail-page .staff-select-wrap[hidden] {
    display: none !important;
}
