/* ── Widget principal ── */
.sccfcw-pickup-widget {
    margin-top: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    font-family: inherit;
}

/* ── Carte ── */
.sccfcw-map-wrap {
    width: 100%;
    height: 240px;
    background: #f5f5f5;
}
.sccfcw-map {
    width: 100%;
    height: 100%;
}

/* ── Liste des points ── */
.sccfcw-point-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    border-top: 1px solid #e0e0e0;
}
.sccfcw-point-list::-webkit-scrollbar { width: 4px; }
.sccfcw-point-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

.sccfcw-point-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.sccfcw-point-item:last-child { border-bottom: none; }
.sccfcw-point-item:hover { background: #f4f8ff; }
.sccfcw-point-item--selected {
    background: #e8f0fe !important;
    border-left: 3px solid #1565C0;
}

.sccfcw-point-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.sccfcw-point-name {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
}
.sccfcw-point-dist {
    font-size: 11px;
    color: #1565C0;
    white-space: nowrap;
    background: #e8f0fe;
    padding: 1px 6px;
    border-radius: 10px;
}
.sccfcw-point-addr {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.sccfcw-loading, .sccfcw-error {
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: #888;
    list-style: none;
}
.sccfcw-error { color: #c62828; }

/* ── Panneau horaires ── */
.sccfcw-hours-panel {
    border-top: 1px solid #e8f0fe;
    background: #f9fbff;
    padding: 10px 14px 12px;
}
.sccfcw-hours-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1565C0;
    margin-bottom: 8px;
}
.sccfcw-hours-grid {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 3px 10px;
    font-size: 12px;
}
.sccfcw-hours-day {
    font-weight: 600;
    color: #555;
}
.sccfcw-hours-val { color: #333; }
