/* اطلاعات قیمت در سایدبار */
.booking-price-info {
    background: rgba(82, 255, 175, 0.05);
    border: 1px dashed #52ffaf;
    color: #52ffaf;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}

.lawyer-loc { font-size: 12px; color: var(--text-dim); margin-top: 5px; }

/* بخش انتخاب نوبت */
.appointment-selector {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #3a4150;
}

.selector-title {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 15px;
    text-align: right;
}

/* اسلایدر روزها */
.days-slider {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.days-container {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 5px;
}

.day-item {
    min-width: 70px;
    background: var(--bg-dark);
    border: 1px solid #3a4150;
    border-radius: 8px;
    padding: 8px 5px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s;
}

.day-item span { font-size: 11px; font-weight: bold; }
.day-item small { font-size: 9px; color: var(--text-dim); margin-top: 4px; }

.day-item.active {
    border-color: var(--blue);
    background: rgba(91, 178, 255, 0.1);
    color: var(--blue);
}

.slider-arrow {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-weight: bold;
}

/* گرید ساعت‌ها */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    background: #2a2f3a;
    border: 1px solid #3a4150;
    color: #666; /* پیش‌فرض غیرفعال */
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 12px;
    cursor: not-allowed;
    transition: 0.3s;
}

.time-slot.available {
    color: var(--text-light);
    cursor: pointer;
    border-color: #4a5264;
}

.time-slot.available:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.time-slot.active {
    background: var(--blue) !important;
    color: white !important;
    border-color: var(--blue);
}

/* استایل تخصص‌ها */
.specialty-item { margin-bottom: 20px; }
.specialty-desc {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 8px;
    padding-right: 15px;
    line-height: 1.8;
}

/* کاربردی */
.w-100 { width: 100%; }
