/* 📋 Clean setting list for Dashboard Accordion */
.setting-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.setting-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px dotted var(--color-border-light);
}

    .setting-line:last-child {
        border-bottom: none;
    }

.setting-label {
    font-weight: 600;
    color: #555;
    min-width: 140px;
    flex-shrink: 0;
}

.setting-value {
    font-weight: 500;
    color: #333;
    text-align: right;
    flex-grow: 1;
}

/* 🛠️ Tiny toggles inside setting-value */
.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tiny-toggle {
    width: 28px;
    height: 14px;
    border-radius: 7px;
    background: #dee2e6;
    position: relative;
    transition: background-color 0.2s ease;
}

    .tiny-toggle::after {
        content: "";
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: left 0.2s ease;
    }

    .tiny-toggle.on {
        background-color: #28a745;
    }

        .tiny-toggle.on::after {
            left: 16px;
        }

/* 🔥 Yes/No labels styling */
.toggle-wrapper .small {
    font-size: 0.75rem;
}

.toggle-wrapper .text-muted.opacity-40 {
    opacity: 0.4;
}

.toggle-wrapper .fw-bold.text-dark {
    opacity: 1;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 columns on small screens */
    gap: 8px;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .settings-grid {
        grid-template-columns: repeat(4, 1fr); /* 3 columns on medium+ screens */
    }
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.80rem;
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: .03rem;
}

    .setting-item i {
        color: gray;
    }

    .setting-item.active i {
        color: #198754; /* green for ON */
    }

    .setting-item.inactive {
        opacity: 0.6;
        text-decoration: line-through;
    }

.accordion-button .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
}

.sidebar-card {
	--bs-card-spacer-y: 1rem;
	--bs-card-spacer-x: 1rem;
	--bs-card-title-spacer-y: 0.5rem;
	--bs-card-title-color: ;
	--bs-card-subtitle-color: ;
	--bs-card-border-width: var(--bs-border-width);
	--bs-card-border-color: var(--bs-border-color-translucent);
	--bs-card-border-radius: var(--bs-border-radius);
	--bs-card-box-shadow: ;
	--bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
	--bs-card-cap-padding-y: 0.5rem;
	--bs-card-cap-padding-x: 1rem;
	--bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
	--bs-card-cap-color: ;
	--bs-card-height: ;
	--bs-card-color: ;
	--bs-card-bg: var(--bs-body-bg);
	--bs-card-img-overlay-padding: 1rem;
	--bs-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--bs-card-height);
	color: var(--bs-body-color);
	word-wrap: break-word;
	background-color: var(--bs-card-bg);
	background-clip: border-box;
	border: var(--bs-card-border-width) solid var(--bs-card-border-color);
	border-radius: var(--bs-card-border-radius);
}

.badge-edit-link {
    margin-top: -1px;

}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge-font-size-2 {
    font-size: 0.65rem;
    padding: 3px 6px;
}

/* Playlist week theme button — canonical style defined in club-dash.css */

/* ======================================================================================
   SETTINGS TAB — All club settings panel styles
   Single source of truth. Do NOT add <style> blocks in settings.php.
====================================================================================== */

/* ── Subnav ── */
.stw-subnav-sentinel { height: 1px; }
.stw-subnav { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; padding: 4px; margin-bottom: 8px; border-radius: 9px; border: 1px solid transparent; background: transparent; position: sticky; top: 8px; z-index: 20; transition: background .25s, box-shadow .25s, border-color .25s, border-radius .25s, padding .25s; }
.stw-subnav::-webkit-scrollbar { display: none; }
.stw-subnav.is-sticky { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.1); border-color: rgba(0,0,0,0.08); border-radius: 11px; padding: 5px 6px; }
.stw-subnav-item { display: inline-block; padding: 4px 11px; font-size: .72rem; font-weight: 500; color: #6b7280; border-radius: 6px; cursor: pointer; white-space: nowrap; text-decoration: none; user-select: none; transition: background .13s, color .13s; }
.stw-subnav-item:hover { background: #e5e7eb; color: #374151; }
.stw-subnav-item.active { background: #2B988F; color: #fff; box-shadow: 0 2px 6px rgba(43,152,143,.35); }
.stw-subnav.is-sticky .stw-subnav-item.active { box-shadow: 0 2px 8px rgba(43,152,143,.4); }
.stw-subnav-danger { color: #ef4444; }
.stw-subnav-danger:hover { background: #fef2f2 !important; color: #dc2626 !important; }
.stw-subnav-danger.active { background: #dc2626 !important; color: #fff !important; box-shadow: 0 2px 6px rgba(220,38,38,.35) !important; }

/* ── Outer tray ── */
.stw-outer { background: #f1f3f5; border-radius: 14px; padding: 10px; display: flex; flex-direction: column; gap: 8px; }

/* ── Section cards ── */
.settings-tab-wrap { background: #fff; border: 1px solid #e5e7eb; border-radius: 11px; padding: 1.1rem 1.4rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); margin-top: 0 !important; }

/* ── Collapsible header ── */
.stw-header { display: flex !important; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; margin-bottom: 0 !important; }
.stw-header:hover .stw-chevron-icon { color: #2B988F; }
.stw-chevron-icon { font-size: 11px; color: #94a3b8; flex-shrink: 0; margin-left: 10px; transition: transform 0.22s ease, color 0.15s; }
.stw-body { padding-top: 0.75rem; border-top: 1px solid #f3f4f6; margin-top: 0.6rem; }

/* ── Section headings ── */
.settings-tab-wrap:not(#settingsDangerZone) > h5.fw-bold { background: #f3f4f6; border-radius: 8px; padding: 8px 14px; margin-bottom: 4px !important; display: flex; align-items: center; gap: 6px; }
@media (max-width: 767.98px) { .settings-tab-wrap:not(#settingsDangerZone) > h5.fw-bold { padding: 7px 12px; font-size: 1rem; border-radius: 6px; } }

/* ── Pick Restrictions section ── */
#settingsRestrictions .setting-group + .setting-group { border-top: 1px solid #f0f0f0; }
#settingsRestrictions #sr_artistBox,
#settingsRestrictions #sr_dateBox,
#settingsRestrictions .setting-group:last-child { border-top: none; }

/* ── Chip-style radio buttons (match create-club wizard pill style) ── */
.sr-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.sr-chip-group input[type="radio"],
.sr-chip-group input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.sr-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    border: 1px solid #e3e7ee;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4d6a;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    user-select: none;
    line-height: 1;
}
.sr-chip::before {
    content: "check";
    font-family: "Material Icons";
    font-feature-settings: "liga";
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: #d8dde6;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.sr-chip:hover { border-color: #c7cdd9; background: #f6f8fb; }
.sr-chip-group input[type="radio"]:checked + .sr-chip,
.sr-chip-group input[type="checkbox"]:checked + .sr-chip {
    background: #f3faf9;
    border-color: #c8e3df;
    color: #2f6f6a;
}
.sr-chip-group input[type="radio"]:checked + .sr-chip:hover,
.sr-chip-group input[type="checkbox"]:checked + .sr-chip:hover {
    background: #ebf5f3;
    border-color: #b6d8d3;
}
.sr-chip-group input[type="radio"]:checked + .sr-chip::before,
.sr-chip-group input[type="checkbox"]:checked + .sr-chip::before {
    background: #2b988f;
    color: #fff;
    transform: scale(1.02);
}
.sr-chip-group input[type="radio"]:focus-visible + .sr-chip,
.sr-chip-group input[type="checkbox"]:focus-visible + .sr-chip {
    outline: 2px solid #2b988f;
    outline-offset: 2px;
}

/* ── Autocomplete wrap (positions dropdown under the input) ── */
.sr-autocomplete-wrap { max-width: 340px; }
.sr-autocomplete-wrap .autocomplete-dropdown { z-index: 200; }
.sr-year-input { width: 96px; }

/* ── Genre chip grid (film clubs) ── */
.sr-genre-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.sr-genre-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    border: 1px solid #e3e7ee;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4d6a;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    user-select: none;
    margin: 0;
    line-height: 1;
}
.sr-genre-chip input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.sr-genre-chip::before {
    content: "check";
    font-family: "Material Icons";
    font-feature-settings: "liga";
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: #d8dde6;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.sr-genre-chip:hover { border-color: #c7cdd9; background: #f6f8fb; }
.sr-genre-chip:has(input[type="checkbox"]:checked) {
    background: #f3faf9;
    border-color: #c8e3df;
    color: #2f6f6a;
}
.sr-genre-chip:has(input[type="checkbox"]:checked):hover {
    background: #ebf5f3;
    border-color: #b6d8d3;
}
.sr-genre-chip:has(input[type="checkbox"]:checked)::before {
    background: #2b988f;
    color: #fff;
    transform: scale(1.02);
}

/* ── MPAA rating pills (film clubs) ── */
.sr-rating-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sr-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    border: 1px solid #e3e7ee;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4d6a;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    line-height: 1;
}
.sr-rating-pill:hover { border-color: #c7cdd9; background: #f6f8fb; }
.sr-rating-pill .sr-rating-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d8dde6;
    color: transparent;
    font-size: 14px !important;
    line-height: 18px;
    text-align: center;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.sr-rating-pill.is-active {
    background: #f3faf9;
    border-color: #c8e3df;
    color: #2f6f6a;
}
.sr-rating-pill.is-active:hover {
    background: #ebf5f3;
    border-color: #b6d8d3;
}
.sr-rating-pill.is-active .sr-rating-check {
    background: #2b988f;
    color: #fff;
    transform: scale(1.02);
}

/* ── Artist restriction tags ── */
.sr-artist-tag { display: inline-flex; align-items: center; gap: 5px; background: #1e293b; color: #fff; font-size: 0.78rem; font-weight: 500; padding: 3px 10px 3px 12px; border-radius: 14px; }
.sr-tag-remove { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1; padding: 0; cursor: pointer; display: flex; align-items: center; transition: color 0.12s; }
.sr-tag-remove:hover { color: #fff; }

/* ── Status messages ── */
#sr_status.ok, #ci_status.ok { color: #16a34a; }
#sr_status.err, #ci_status.err { color: #dc2626; }

/* ── Club image thumbnail ── */
.club-img-wrap { position: relative; display: inline-block; width: 80px; height: 80px; flex-shrink: 0; }
.club-img-wrap img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; border: 1px solid #dee2e6; display: block; }
.club-img-edit-btn { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.22); backdrop-filter: blur(8px) saturate(1.6); -webkit-backdrop-filter: blur(8px) saturate(1.6); border: 1px solid rgba(255,255,255,0.45); box-shadow: 0 2px 8px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.18s, box-shadow 0.18s, transform 0.15s; color: #1e1e1e; font-size: 10px; margin: 0; }
.club-img-edit-btn:hover { background: rgba(255,255,255,0.38); box-shadow: 0 4px 14px rgba(0,0,0,0.22); transform: scale(1.08); }

/* ── General settings horizontal form ── */
.ci-form { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.ci-row { display: flex; align-items: center; gap: 20px; padding: 13px 16px; border-bottom: 1px solid #f0f0f0; }
.ci-row:last-child { border-bottom: none; }
.ci-row--top { align-items: flex-start; }
.ci-label { width: 110px; flex-shrink: 0; font-size: 0.8rem; font-weight: 600; color: #6b7280; text-align: right; padding-top: 5px; line-height: 1.3; }
.ci-row--top .ci-label { padding-top: 7px; }
.ci-control { flex: 1; min-width: 0; }
.ci-row--actions { justify-content: flex-end; gap: 12px; padding: 10px 16px; background: #f9fafb; }
.ci-description { resize: vertical; }

/* Custom URL row: prefix sits inline before the slug field */
.ci-slug-input-row {
    display: flex;
    align-items: stretch;
    border: 1px solid #d6d9e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.ci-slug-prefix {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.78rem;
    border-right: 1px solid #e5e7eb;
    white-space: nowrap;
    user-select: all;
}
.ci-slug-input.form-control {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}
.ci-slug-input.form-control:focus {
    background: #fff;
}

/* ── Save button + indicator ── */
.btn-settings-save { font-size: 0.82rem; font-weight: 600; padding: 6px 20px; background: #2B988F; color: #fff; border: none; border-radius: 7px; cursor: pointer; transition: background 0.15s, opacity 0.15s; }
.btn-settings-save:hover:not(:disabled) { background: #237d75; }
.btn-settings-save:disabled { background: #e5e7eb; color: #adb5bd; cursor: not-allowed; }
.aqm-save-indicator { font-size: 0.72rem; padding: 2px 10px; border-radius: 10px; opacity: 0; transition: opacity 0.2s; white-space: nowrap; }
.aqm-save-indicator.visible { opacity: 1; }
.aqm-save-indicator.ok  { background: #d1fae5; color: #065f46; }
.aqm-save-indicator.err { background: #fee2e2; color: #991b1b; }

/* ── Rotation list ── */
.aqm-rotation-list { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.aqm-rot-item { display: flex; align-items: center; padding: 8px 12px; background: #fff; border-bottom: 1px solid #f0f0f0; cursor: default; gap: 0; }
.aqm-rot-item:last-child { border-bottom: none; }
.aqm-rot-item.sortable-ghost  { opacity: 0.35; }
.aqm-rot-item.sortable-chosen { background: #f0faf9; }
.aqm-rot-col-pos { display: flex; align-items: center; gap: 5px; flex: 0 0 50px; flex-shrink: 0; }
.aqm-rot-drag { cursor: grab; color: #adb5bd; font-size: 20px; }
.aqm-rot-num  { font-size: 0.7rem; color: #9ca3af; font-weight: 700; }
.aqm-rot-col-member { display: flex; align-items: center; gap: 7px; flex: 1; padding: 0 12px; min-width: 0; }
.aqm-rot-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.aqm-rot-name   { font-size: 0.82rem; font-weight: 600; }
.aqm-rot-spacer { display: none; }
.aqm-rot-col-status { display: flex; align-items: center; justify-content: center; flex: 0 0 110px; border-left: 1px solid #e5e7eb; padding: 0 8px; }
.aqm-rot-col-status .aqm-live-tag, .aqm-rot-col-status .aqm-on-deck-tag, .aqm-rot-col-status .aqm-pw-badge, .aqm-rot-col-status .aqm-queue-set-tag, .aqm-rot-col-status .aqm-queue-empty-tag { display: block; width: 100%; text-align: center; }
.aqm-rot-col-toggle { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; padding-left: 10px; }
.aqm-rot-ir-label { font-size: 0.72rem; font-weight: 600; color: #6b7280; white-space: nowrap; }
.aqm-rot-toggle { cursor: pointer; }
.aqm-rot-toggle:checked { background-color: #2B988F; border-color: #2B988F; }
.aqm-rot-toggle:focus { border-color: #2B988F; box-shadow: 0 0 0 0.2rem rgba(43,152,143,0.2); }
@media (max-width: 767.98px) { .aqm-rot-col-status { display: none; } }
@media (max-width: 575.98px) { .aqm-rot-col-pos { flex: 0 0 38px; } .aqm-rot-ir-label { display: none; } .aqm-rot-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } }
.aqm-rot-item.aqm-rot-pw .aqm-rot-name { color: #6d28d9; }
.aqm-rot-item.aqm-rot-live    { background: #f0fdf4; border-left: 3px solid #86efac; }
.aqm-rot-item.aqm-rot-on-deck { background: #fffbeb; border-left: 3px solid #fde68a; }
.aqm-rot-item.aqm-rot-pw      { background: #faf5ff; border-left: 3px solid #c4b5fd; cursor: default; }

/* ── Status tags ── */
.aqm-live-tag, .aqm-on-deck-tag, .aqm-queue-set-tag, .aqm-queue-empty-tag { font-size: 0.62rem; font-weight: 700; border-radius: 4px; padding: 2px 6px; }
.aqm-live-tag       { color: #fff;    background: #22c55e; }
.aqm-on-deck-tag    { color: #b45309; background: #fef3c7; }
.aqm-queue-set-tag  { color: #16a34a; background: #f3f4f6; }
.aqm-queue-empty-tag{ color: #dc2626; background: #f3f4f6; opacity: 0.8; }

/* ── Cycle week controls ── */
.aqm-cycle-week-ctrl { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.aqm-cycle-week-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; transition: color 0.2s; }
.aqm-cycle-week-label.is-extended { color: #374151; }
.aqm-cycle-week-btns { display: flex; align-items: center; gap: 3px; }
.aqm-extend-weeks-label { font-size: 0.65rem; color: #9ca3af; font-weight: 500; letter-spacing: 0.02em; min-width: 38px; text-align: center; user-select: none; }
.btn-cycle-week { background: #fff; border: 1px solid #d1d5db; width: 24px; height: 24px; font-size: 0.95rem; line-height: 1; color: #374151; border-radius: 5px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.15s, border-color 0.15s, background 0.15s; }
.btn-cycle-week:hover:not(:disabled) { color: #111; border-color: #9ca3af; background: #f3f4f6; }
.btn-cycle-week:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-cycle-week-save { background: #2B988F; color: #fff; border: none; border-radius: 5px; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: background 0.15s, opacity 0.15s; flex-shrink: 0; }
.btn-cycle-week-save .material-icons { font-size: 16px; line-height: 1; }
.btn-cycle-week-save:hover:not(:disabled) { background: #237d75; }
.btn-cycle-week-save:disabled { background: #e5e7eb; color: #adb5bd; cursor: not-allowed; }

/* ── Admin cycle-end override (set exact end / advance now) ─────── */
.aqm-cycle-override {
    margin-top: 10px;
    padding: 10px 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex; flex-direction: column; gap: 8px;
}
.aqm-cycle-override__row {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.aqm-cycle-override__label {
    font-size: 0.75rem; font-weight: 600; color: #374151;
    margin: 0;
}
.aqm-cycle-override__input {
    appearance: none; -webkit-appearance: none;
    font: inherit; font-size: 0.82rem;
    padding: 5px 8px; line-height: 1.2;
    border: 1px solid #d1d5db; border-radius: 6px;
    background: #fff; color: #111827;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.aqm-cycle-override__input:focus {
    outline: none; border-color: #2b988f;
    box-shadow: 0 0 0 3px rgba(43, 152, 143, 0.15);
}
.aqm-cycle-override__hint {
    font-size: 0.75rem; color: #6b7280; flex: 1 1 auto;
}
.aqm-cycle-override__tz {
    font-size: 0.7rem; font-weight: 600; color: #6b7280;
    text-transform: uppercase; letter-spacing: 0.04em;
    background: #eef2f7; border-radius: 999px;
    padding: 2px 8px; line-height: 1.4;
}

/* ── Hidden pick / queue states ── */
.aqm-queue-hidden-pick { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: #6b7280; font-style: italic; }
.aqm-queue-hidden-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: #f3f4f6; color: #9ca3af; border: 1px solid #e5e7eb; border-radius: 4px; padding: 1px 6px; font-style: normal; }
.aqm-skip { background: none; border: 1px solid #e5e7eb; padding: 3px 10px; font-size: 0.7rem; color: #6b7280; border-radius: 6px; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: color 0.15s, border-color 0.15s, background 0.15s; }
.aqm-skip:hover { color: #ef4444; border-color: #fca5a5; background: #fef2f2; }
.aqm-undo { background: none; border: 1px solid #fbbf24; padding: 3px 10px; font-size: 0.7rem; color: #92400e; border-radius: 6px; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: color 0.15s, border-color 0.15s, background 0.15s; }
.aqm-undo:hover { background: #fef3c7; border-color: #f59e0b; }
.aqm-nudge {
    display: inline-flex; align-items: center; gap: 4px;
    background: none; border: 1px solid #d1d5db;
    padding: 3px 10px; font-size: 0.7rem; color: #2B988F;
    border-radius: 6px; cursor: pointer; white-space: nowrap;
    flex-shrink: 0; font-weight: 600;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.aqm-nudge:hover:not(:disabled) { background: #ecfdf5; border-color: #2B988F; color: #1b6b62; }
.aqm-nudge:disabled { cursor: default; opacity: 0.9; }
.aqm-nudge.is-sent {
    color: #065f46; border-color: #86efac; background: #ecfdf5;
}
.aqm-nudge .material-icons { font-size: 14px; line-height: 1; }

/* ── Upcoming queue: single-table look (settings tab) ── */
.aqm-queue-list { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; background: #fff; }
.aqm-queue-list .aqm-queue-row { border-radius: 0; margin-bottom: 0; border: none; border-bottom: 1px solid #f0f0f0; box-shadow: none; }
.aqm-queue-list .aqm-queue-row:last-child { border-bottom: none; }
.aqm-queue-list .aqm-queue-row.skipped { opacity: 1; }
.aqm-queue-list .aqm-queue-row.skipped > * { opacity: 0.45; }
.aqm-queue-list .aqm-queue-row.skipped > .aqm-queue-divider { opacity: 1; }

/* ── User Management ── */
#um-member-list { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; background: #fff; }
#um-member-list .um-member-row { border-radius: 0; margin-bottom: 0; border: none; border-bottom: 1px solid #f0f0f0; }
#um-member-list .um-member-row:last-child { border-bottom: none; }
#um-member-list .um-invite-row { border-bottom-style: dashed; }
#um-member-list .um-invite-row:last-child { border-bottom: none; }
.um-member-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; margin-bottom: 6px; }
.um-col-member { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 0; }
.um-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.um-name     { font-size: .8rem; font-weight: 600; color: #1e293b; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.um-username { font-size: .68rem; color: #94a3b8; }
.um-col-role { flex: 0 0 90px; display: flex; justify-content: center; align-items: center; }
.um-col-actions { display: flex; gap: 5px; flex-shrink: 0; }
.um-role-badge { font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.um-role-badge.creator { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }
.um-role-badge.admin   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.um-role-badge.member  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.um-role-badge.pending { background: #fffbeb; color: #92400e; border: 1px dashed #fcd34d; }
.um-invite-row { opacity: 0.55; border-style: dashed; }
.um-role-badge.clickable { cursor: pointer; user-select: none; transition: filter .15s, box-shadow .15s; }
.um-role-badge.clickable:hover { filter: brightness(.94); box-shadow: 0 1px 5px rgba(0,0,0,.1); }
.um-role-badge.clickable .um-chevron { font-size: .5rem; margin-left: 5px; opacity: .55; vertical-align: middle; }
.um-role-dropdown { position: fixed; z-index: 1080; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; box-shadow: 0 6px 22px rgba(0,0,0,.13); padding: 5px; min-width: 105px; }
.um-role-option { display: flex; align-items: center; gap: 8px; padding: 5px 7px; border-radius: 7px; cursor: pointer; transition: background .12s; }
.um-role-option:hover { background: #f8fafc; }
.um-role-option .um-opt-check { font-size: .65rem; color: transparent; margin-left: auto; }
.um-role-option.is-current .um-opt-check { color: #2B988F; }
.um-btn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; padding: 0; border-radius: 6px; font-size: .75rem; cursor: pointer; transition: background .15s, color .15s, border-color .15s; text-decoration: none; flex-shrink: 0; background: none; border: 1px solid #e5e7eb; color: #6b7280; }
.um-btn:hover { background: #f3f4f6; border-color: #d1d5db; color: #374151; }
.um-btn-remove:hover { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.um-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ── Admin Log ── */
.al-entry { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0f0f0; font-size: .85rem; }
.al-entry:last-child { border-bottom: none; }
.al-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; margin-top: 1px; }
.al-body { flex: 1; min-width: 0; }
.al-who   { font-weight: 600; color: #1e293b; }
.al-action { color: #374151; }
.al-detail { color: #6b7280; font-size: .78rem; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.al-time { font-size: .72rem; color: #9ca3af; flex-shrink: 0; white-space: nowrap; padding-top: 2px; }
.al-footer { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.al-btn { font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 7px; cursor: pointer; border: 1px solid #dee2e6; background: #f8f9fa; color: #374151; transition: background .14s, border-color .14s; }
.al-btn:hover { background: #e9ecef; border-color: #adb5bd; }
.al-btn-dl { background: #e6f4f3; color: #2B988F; border-color: #a7d8d5; }
.al-btn-dl:hover { background: #2B988F; color: #fff; border-color: #2B988F; }
.al-empty { color: #9ca3af; font-size: .82rem; padding: 6px 0; }

/* ── Danger Zone ── */
#settingsDangerZone { border: 1.5px solid #fca5a5; background: #fff5f5; border-radius: 8px; padding: 1.25rem 1.5rem; }
#settingsDangerZone > h5 { color: #b91c1c; }
.btn-settings-danger { background: #dc2626; color: #fff; border: none; border-radius: 8px; padding: 6px 18px; font-weight: 600; letter-spacing: 0.02em; }




/* ── Oscar restriction panel ────────────────────────────────────────
   Used by both partials/tabs/settings.php and create-group-step2.php.
   A vertical category list with right-aligned toggle switches feels
   calmer than a checkbox grid, and matches how OS-level setting rows
   are laid out everywhere else. */
.oscar-restriction { display: flex; flex-direction: column; gap: 14px; }
.oscar-restriction__lede { margin: 0; font-size: 0.88rem; color: #374151; line-height: 1.5; }
.oscar-restriction__lede strong { color: #0c3530; font-weight: 700; }

.oscar-restriction__result-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    background: #f6f8fb; border: 1px solid #e5e7eb; border-radius: 10px;
    padding: 8px 12px;
}
.oscar-restriction__result-label {
    font-size: 0.78rem; color: #6b7280; font-weight: 600; letter-spacing: 0.01em;
}
.oscar-restriction__segmented {
    display: inline-flex; gap: 0;
    border: 1px solid #d1d5db; border-radius: 999px; overflow: hidden;
    background: #fff;
}
.oscar-restriction__seg {
    appearance: none; background: transparent; border: 0; cursor: pointer;
    font: inherit; font-size: 0.8rem; font-weight: 600; color: #4b5563;
    padding: 6px 14px; line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
}
.oscar-restriction__seg + .oscar-restriction__seg { border-left: 1px solid #e5e7eb; }
.oscar-restriction__seg:hover { background: #f3f4f6; color: #111827; }
.oscar-restriction__seg.is-active { background: #0c3530; color: #fff; }
.oscar-restriction__seg.is-active:hover { background: #0c3530; }

.cgw-grammy-search-wrap {
    position: relative;
    margin-left: auto;
    flex: 0 1 200px; min-width: 140px;
    display: inline-flex;
}
.cgw-grammy-search {
    width: 100%;
    appearance: none; -webkit-appearance: none;
    border: 1px solid #d1d5db; border-radius: 999px;
    background: #fff; color: #111827;
    font: inherit; font-size: 0.8rem;
    padding: 6px 30px 6px 12px; line-height: 1.2;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cgw-grammy-search:focus {
    outline: none; border-color: #0c3530;
    box-shadow: 0 0 0 3px rgba(12, 53, 48, 0.15);
}
/* Suppress the browser's built-in clear cross on type=search — we draw
   our own so it lines up with the design and stays consistent across
   browsers (Chrome/Edge show one, Firefox/Safari don't). */
.cgw-grammy-search::-webkit-search-decoration,
.cgw-grammy-search::-webkit-search-cancel-button,
.cgw-grammy-search::-webkit-search-results-button,
.cgw-grammy-search::-webkit-search-results-decoration {
    -webkit-appearance: none; appearance: none; display: none;
}
.cgw-grammy-search-clear {
    position: absolute; top: 50%; right: 4px;
    transform: translateY(-50%);
    appearance: none; -webkit-appearance: none;
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; padding: 0;
    background: transparent; color: #6b7280;
    border: 0; border-radius: 999px;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
}
.cgw-grammy-search-clear:hover { background: #e5e7eb; color: #0c3530; }
.cgw-grammy-search-clear:focus-visible {
    outline: none; box-shadow: 0 0 0 3px rgba(12, 53, 48, 0.15);
}
.cgw-grammy-search-clear .material-icons { font-size: 16px; line-height: 1; }
.oscar-restriction__item.is-hidden { display: none; }

/* Truncated Grammy list: items past the cutoff carry .is-overflow and
   stay hidden until the list is .is-expanded (toggle) OR .is-searching
   (active filter — search must reach the whole list). .is-hidden from
   the search filter always wins. */
/* Pagination hides off-page items. While a search query is active the
   JS handler strips .is-page-hidden from every item and uses .is-hidden
   to drop non-matches; clearing the query restores pagination. */
#grammyCategoryList .oscar-restriction__item.is-page-hidden { display: none; }
#grammyCategoryList .oscar-restriction__item.is-hidden { display: none; }

.cgw-grammy-pager {
    /* Cancel the 14px flex gap on .oscar-restriction so the pager sits
       flush against the list. */
    margin-top: -14px;
    background: #fff;
    border: 1px solid #d1d5db; border-top: 0;
    border-radius: 0 0 10px 10px;
    padding: 8px 10px;
}
#grammyCategoryList { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.cgw-grammy-pager.is-hidden { display: none; }
.cgw-grammy-pager__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 4px;
}
.cgw-grammy-pager__item {
    display: inline-flex; align-items: center; justify-content: center;
}
.cgw-grammy-pager__item--gap {
    min-width: 28px; height: 28px;
    color: #6b7280; font-size: 0.85rem; font-weight: 600;
    user-select: none;
}
.cgw-grammy-pager__btn {
    appearance: none; -webkit-appearance: none;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; height: 28px; padding: 0 8px;
    background: #fff; color: #374151;
    border: 1px solid #e5e7eb; border-radius: 6px;
    font: inherit; font-size: 0.8rem; font-weight: 600;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.cgw-grammy-pager__btn:hover:not(.is-active) {
    background: #f6f8fb; color: #0c3530; border-color: #c3c7cf;
}
.cgw-grammy-pager__btn.is-active {
    background: #0c3530; color: #fff; border-color: #0c3530;
    cursor: default;
}
.cgw-grammy-pager__btn:focus-visible {
    outline: none; box-shadow: 0 0 0 3px rgba(12, 53, 48, 0.15);
}
.cgw-grammy-pager__btn--nav { padding: 0; }
.cgw-grammy-pager__btn--nav .material-icons { font-size: 18px; line-height: 1; }
.cgw-grammy-pager__btn:disabled {
    color: #c3c7cf; border-color: #eef0f3; background: #f9fafb;
    cursor: not-allowed;
}
.cgw-grammy-pager__btn:disabled:hover {
    color: #c3c7cf; border-color: #eef0f3; background: #f9fafb;
}

/* ── Generic toggle-list block ──────────────────────────────────────
   Reused by the Oscar restriction panel AND the genre restriction
   panel. A vertical list of label-on-the-left, switch-on-the-right
   rows. Drop a --cols-2 modifier on the <ul> to lay out in two
   columns (handy for the 18 film genres). */
.rt-toggle-list {
    list-style: none; margin: 0; padding: 0;
    border: 1px solid #e5e7eb; border-radius: 10px; background: #fff;
    overflow: hidden;
}
.rt-toggle-list--cols-2 {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rt-toggle-list__item + .rt-toggle-list__item { border-top: 1px solid #f1f3f7; }
.rt-toggle-list--cols-2 .rt-toggle-list__item {
    border-top: 1px solid #f1f3f7;
}
.rt-toggle-list--cols-2 .rt-toggle-list__item:nth-child(odd) {
    border-right: 1px solid #f1f3f7;
}
.rt-toggle-list--cols-2 .rt-toggle-list__item:nth-child(1),
.rt-toggle-list--cols-2 .rt-toggle-list__item:nth-child(2) {
    border-top: 0;
}
.rt-toggle-list__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 10px 14px; margin: 0; cursor: pointer;
    transition: background 0.12s ease;
}
.rt-toggle-list__row:hover { background: #f9fafb; }
.rt-toggle-list__label {
    font-size: 0.88rem; color: #111827; font-weight: 500;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* iOS-style toggle switch — works as <input type=checkbox> inside a <label>. */
.rt-toggle-list__switch {
    position: relative; display: inline-block; flex: 0 0 auto;
    width: 38px; height: 22px;
}
.rt-toggle-list__switch input[type="checkbox"] {
    position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%;
    margin: 0; cursor: pointer;
}
.rt-toggle-list__slider {
    position: absolute; inset: 0; border-radius: 999px;
    background: #d1d5db; transition: background 0.18s ease;
}
.rt-toggle-list__slider::before {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    transition: transform 0.18s ease;
}
.rt-toggle-list__switch input[type="checkbox"]:checked + .rt-toggle-list__slider {
    background: #2B988F;
}
.rt-toggle-list__switch input[type="checkbox"]:checked + .rt-toggle-list__slider::before {
    transform: translateX(16px);
}
.rt-toggle-list__switch input[type="checkbox"]:focus-visible + .rt-toggle-list__slider {
    box-shadow: 0 0 0 3px rgba(43, 152, 143, 0.25);
}

/* Back-compat aliases for the Oscar-specific class names that
   shipped first; keeps the just-deployed Oscar markup unchanged. */
.oscar-restriction__list   { /* same as .rt-toggle-list */
    list-style: none; margin: 0; padding: 0;
    border: 1px solid #e5e7eb; border-radius: 10px; background: #fff;
    overflow: hidden;
}
.oscar-restriction__item + .oscar-restriction__item { border-top: 1px solid #f1f3f7; }
.oscar-restriction__toggle {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 10px 14px; margin: 0; cursor: pointer;
    transition: background 0.12s ease;
}
.oscar-restriction__toggle:hover { background: #f9fafb; }
.oscar-restriction__name { font-size: 0.88rem; color: #111827; font-weight: 500; }
.oscar-restriction__switch {
    position: relative; display: inline-block; flex: 0 0 auto;
    width: 38px; height: 22px;
}
.oscar-restriction__switch input[type="checkbox"] {
    position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%;
    margin: 0; cursor: pointer;
}
.oscar-restriction__slider {
    position: absolute; inset: 0; border-radius: 999px;
    background: #d1d5db; transition: background 0.18s ease;
}
.oscar-restriction__slider::before {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    transition: transform 0.18s ease;
}
.oscar-restriction__switch input[type="checkbox"]:checked + .oscar-restriction__slider {
    background: #2B988F;
}
.oscar-restriction__switch input[type="checkbox"]:checked + .oscar-restriction__slider::before {
    transform: translateX(16px);
}
.oscar-restriction__switch input[type="checkbox"]:focus-visible + .oscar-restriction__slider {
    box-shadow: 0 0 0 3px rgba(43, 152, 143, 0.25);
}

/* Genre panel header — same shape as the Oscar lede row with a
   Select all link tucked into the right side. */
.genre-restriction__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 10px;
}
.genre-restriction__lede { margin: 0; font-size: 0.88rem; color: #374151; }
.genre-restriction__toggle-all {
    appearance: none; background: transparent; border: 0; padding: 0;
    color: #2B988F; font-weight: 600; font-size: 0.82rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color 0.12s ease;
}
.genre-restriction__toggle-all:hover { color: #1f6f68; text-decoration: underline; }
.genre-restriction__toggle-all .material-icons { font-size: 14px; }
@media (max-width: 480px) {
    .rt-toggle-list--cols-2 { grid-template-columns: minmax(0, 1fr); }
    .rt-toggle-list--cols-2 .rt-toggle-list__item:nth-child(odd) { border-right: 0; }
    .rt-toggle-list--cols-2 .rt-toggle-list__item:nth-child(2) { border-top: 1px solid #f1f3f7; }
}

/* ============================================================
   Club card preview (Settings ▸ General) — a faithful, self-
   contained copy of the dashboard "Your Clubs" spotlight card
   with a drag-to-reposition cover. club-cards.css is NOT loaded
   on the club-dash page, so these styles stand alone (.ccp-*).
   ============================================================ */
.ccp-section { margin: 6px 0 22px; }
.ccp-stage { display: flex; justify-content: center; padding: 4px 0 26px; }

.ccp-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: #0b1020;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;             /* let pointer drags pan instead of scrolling */
    box-shadow: 0 18px 40px -18px rgba(2, 6, 23, .5);
}
.ccp-card.is-dragging { cursor: grabbing; }

.ccp-bg { position: absolute; inset: 0; z-index: 0; }
.ccp-bg img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ccp-bg--placeholder { background: linear-gradient(135deg, #1f2750 0%, #2b988f 100%); }
.ccp-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(7,10,20,.92) 0%, rgba(7,10,20,.70) 42%, rgba(7,10,20,.25) 70%, rgba(7,10,20,.55) 100%);
}

.ccp-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    min-height: 200px; padding: 18px 20px; gap: 10px;
    color: #fff; pointer-events: none;
}
.ccp-top { display: flex; }
.ccp-type {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px 6px 9px;
    font-size: .72rem; font-weight: 600; color: #f1f5f9;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ccp-type .material-icons { font-size: 16px; color: #e8c87a; }

.ccp-name {
    font-family: "Fraunces", Georgia, serif; font-weight: 600;
    font-size: 1.7rem; line-height: 1.05; letter-spacing: -.015em;
    margin: 0; max-width: 74%;
    text-shadow: 0 2px 20px rgba(0,0,0,.45);
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.ccp-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.82); }
.ccp-meta .material-icons { font-size: 15px; vertical-align: -3px; opacity: .85; }
.ccp-meta b { font-weight: 600; }
.ccp-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.5); }

.ccp-foot { margin-top: auto; max-width: 66%; }
.ccp-eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #e8c87a; margin-bottom: 3px; }
.ccp-pick-title { font-weight: 700; font-size: 1rem; line-height: 1.15; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ccp-pick-sub { font-size: .8rem; color: rgba(255,255,255,.7); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ccp-foot--empty { color: rgba(255,255,255,.7); font-style: italic; font-size: .85rem; }

.ccp-poster {
    position: absolute; z-index: 3; right: 20px; bottom: -18px;
    width: 104px; aspect-ratio: 27 / 40;
    border-radius: 12px; overflow: hidden; background: #0b1020; pointer-events: none;
    box-shadow: 0 16px 30px -10px rgba(15,23,42,.5), 0 0 0 5px rgba(255,255,255,.9);
}
.ccp-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ccp-poster--empty { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); }
.ccp-poster--empty .material-icons { font-size: 26px; }

.ccp-actions { display: flex; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.ccp-hint { font-size: .78rem; color: #6c757d; margin-right: auto; display: inline-flex; align-items: center; gap: 6px; }
.ccp-hint .material-icons { font-size: 16px; }
.ccp-status.ok  { color: #16a34a; }
.ccp-status.err { color: #dc2626; }
.ccp-btn-reset {
    background: none; border: 1px solid #d1d5db; border-radius: 8px;
    padding: 6px 12px; font-size: .8rem; color: #374151; cursor: pointer;
    transition: background .15s ease;
}
.ccp-btn-reset:hover { background: #f3f4f6; }

@media (max-width: 480px) {
    .ccp-name { font-size: 1.45rem; max-width: 100%; }
    .ccp-foot { max-width: 60%; }
    .ccp-poster { width: 88px; right: 16px; }
}
