/* ============================================
   SureCart Course Extension — Timeslots Shortcode
   Version: 1.4.1
   Extracted from inline <style> + Manus CSS updates
   ============================================ */

.sce-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sce-slot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 18px;
    background: #f4f6fb;
    border: 1px solid #dde2f0;
    border-radius: 8px;
    box-sizing: border-box;
}

.sce-slot--full {
    opacity: 0.55;
}

.sce-slot__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #282562;
    line-height: 1.3;
    margin: 0;
}

.sce-slot__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.sce-slot__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00B294;
    flex-shrink: 0;
}

.sce-slot__dot--low {
    background: #e6a817;
}

.sce-slot__dot--full {
    background: #c0392b;
}

.sce-slot__spots {
    font-size: 1.2rem;
    color: #555e7a;
    margin: 0;
    line-height: 1;
}

/* Session dates section */
.sce-slot__sessions {
    margin: 6px 0 0;
    padding: 10px 12px;
    background: rgba(0,0,0,0.03);
    border-radius: 5px;
    border-top: 1px solid #dde2f0;
}

.sce-slot__sessions-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #282562;
    margin: 0 0 6px;
}

.sce-slot__sessions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}

.sce-slot__sessions-list li {
    font-size: 1rem;
    color: #555e7a;
    padding: 4px 6px;
    background: #fff;
    border-radius: var(--radius, 4px);
}

/* Empty state */
.sce-timeslots__empty {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
    padding: 12px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .sce-slot__title {
        font-size: 1.2rem;
    }

    .sce-slot__spots {
        font-size: 1rem;
    }

    .sce-slot__sessions-label {
        font-size: 1rem;
    }
}
