/* ==========================================================================
   WorkSocial Tour Form Styles
   Time slot chips, time group layout, and selection states.
   Extracted from template-parts/landing-page-desktop.php
   ========================================================================== */

.ws-time-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #564d43;
    margin-bottom: 10px;
}

.ws-time-group {
    background: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.ws-time-group .input-group-text {
    background: transparent;
    border: none;
    padding: 0;
    color: #999;
    flex-shrink: 0;
}

.ws-time-slots {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    padding-bottom: 4px;
}

.ws-time-slots::-webkit-scrollbar {
    height: 3px;
}

.ws-time-slots::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.ws-time-slots::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.ws-time-slots::-webkit-scrollbar-thumb:hover {
    background: #E05E0F;
}

.ws-time-slot {
    flex-shrink: 0;
    padding: 8px 14px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: #564d43;
    background: #f9f7f4;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.ws-time-slot:hover {
    border-color: #E05E0F;
    background: #fff3eb;
}

.ws-time-slot.active {
    background: #E05E0F;
    border-color: #E05E0F;
    color: #fff;
}

.ws-time-selected {
    margin-top: 12px;
    font-size: 14px;
    color: #564d43;
}

.ws-time-selected span {
    font-weight: 600;
    color: #E05E0F;
}
