/**
 * ClubCore Nav v2 — Standalone pagina navigatie
 * @version 2.0.0
 *
 * Gebruikt --ccn-accent (gezet via inline style op .ccn-nav)
 * zodat Avada/thema CSS variabelen niet overschreven worden.
 */

/* Nav bar */
.ccn-nav {
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9990;
}
.ccn-nav__inner {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 0;
}
.ccn-nav__brand {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    padding: 12px 16px 12px 0;
    border-right: 1px solid #e5e7eb;
    margin-right: 4px;
    white-space: nowrap;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ccn-nav__brand-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.ccn-nav__links {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}
.ccn-nav__links::-webkit-scrollbar { display: none; }

.ccn-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
}
.ccn-nav__link:hover {
    color: var(--ccn-accent, #1e3a5f);
    text-decoration: none;
}
.ccn-nav__link--active {
    color: var(--ccn-accent, #1e3a5f);
    border-bottom-color: var(--ccn-accent, #1e3a5f);
    font-weight: 600;
}
.ccn-nav__icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

/* Disabled module (admin only) */
.ccn-nav__link--disabled {
    opacity: 0.45;
}
.ccn-nav__link--disabled:hover {
    opacity: 0.6;
}
.ccn-nav__badge-off {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ccn-drawer__link--disabled {
    opacity: 0.45;
}
.ccn-drawer__link--disabled .ccn-nav__badge-off {
    margin-left: auto;
}

/* Module disabled message (non-admin) */
.ccn-module-disabled {
    text-align: center;
    padding: 60px 24px;
    color: #6b7280;
    font-size: 15px;
    font-family: inherit;
}

/* User area — v2.8.6: avatar dropdown */
.ccn-nav__user-wrap {
    position: relative;
    margin-left: auto;
    padding-left: 12px;
    white-space: nowrap;
}
.ccn-nav__avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    font-family: inherit;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.ccn-nav__avatar-btn:hover {
    background: #f3f4f6;
}
.ccn-nav__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ccn-nav__avatar-name {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    font-family: inherit;
}
.ccn-nav__avatar-chevron {
    width: 14px;
    height: 14px;
    stroke: #9ca3af;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
}
.ccn-nav__avatar-btn[aria-expanded="true"] .ccn-nav__avatar-chevron {
    transform: rotate(180deg);
}
.ccn-nav__avatar-dropdown {
    position: fixed;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
    min-width: 190px;
    z-index: 99999;
    overflow: hidden;
    animation: ccnDropIn 0.15s ease-out;
}

/* Hamburger (mobile only) */
.ccn-nav__hamburger {
    display: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}
.ccn-nav__hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: transform .2s, opacity .15s;
}

/* Content area */
.ccn-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

/* Tab bar (v2.2.0) */
.ccn-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ccn-tabs::-webkit-scrollbar { display: none; }
.ccn-tabs__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
    cursor: pointer;
}
.ccn-tabs__tab:hover {
    color: var(--ccn-accent, #1e3a5f);
    text-decoration: none;
}
.ccn-tabs__tab--active {
    color: var(--ccn-accent, #1e3a5f);
    border-bottom-color: var(--ccn-accent, #1e3a5f);
    font-weight: 600;
}
.ccn-tabs__tab--restricted {
    opacity: 0.4;
}
.ccn-tabs__tab--restricted:hover {
    opacity: 0.55;
}
.ccn-tabs__icon {
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}
.ccn-tab-content {
    animation: ccn-tab-fadein .2s ease;
}
@keyframes ccn-tab-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.ccn-empty-state {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
    padding: 32px 16px;
    font-family: inherit;
}

/* Family sub-heading */
.ccn-family-heading {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 10px;
    font-family: inherit;
}

@media (max-width: 640px) {
    .ccn-tabs__tab { padding: 8px 12px; font-size: 13px; }
}
.ccn-content img {
    max-width: 100%;
    height: auto;
}

/* Login wrapper */
.ccn-login-wrap {
    max-width: 420px;
    margin: 60px auto;
    padding: 0 16px;
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .ccn-nav__links { display: none; }
    .ccn-nav__user-wrap { display: none; }
    .ccn-nav__hamburger { display: flex; }
    .ccn-nav__inner { justify-content: space-between; }
    .ccn-nav__brand { border-right: none; margin-right: 0; }
    .ccn-content { padding: 16px 12px 32px; }
}

/* Drawer (mobile menu) */
.ccn-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.ccn-drawer[hidden] { display: none !important; }
.ccn-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .25s;
}
.ccn-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ccn-drawer--open .ccn-drawer__backdrop { opacity: 1; }
.ccn-drawer--open .ccn-drawer__panel { transform: translateX(0); }

.ccn-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
}
.ccn-drawer__title {
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    font-family: inherit;
}
.ccn-drawer__close {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.ccn-drawer__close:hover { color: #374151; }

.ccn-drawer__links {
    flex: 1;
    padding: 8px 0;
}
.ccn-drawer__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-size: 15px;
    color: #374151;
    text-decoration: none;
    font-family: inherit;
    transition: background .15s;
    border-left: 3px solid transparent;
}
.ccn-drawer__link:hover {
    background: #f9fafb;
    text-decoration: none;
}
.ccn-drawer__link--active {
    color: var(--ccn-accent, #1e3a5f);
    font-weight: 600;
    border-left-color: var(--ccn-accent, #1e3a5f);
    background: #f0f4f8;
}

.ccn-drawer__footer {
    padding: 16px 18px;
    border-top: 1px solid #e5e7eb;
}
.ccn-drawer__user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.ccn-drawer__name {
    font-size: 14px;
    font-weight: 500;
    color: #1d2327;
    font-family: inherit;
}
.ccn-drawer__logout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    transition: color .15s, border-color .15s;
}
.ccn-drawer__logout:hover {
    color: #374151;
    border-color: #d1d5db;
    text-decoration: none;
}

/* Profile layout */
.ccn-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 640px) {
    .ccn-profile-grid { grid-template-columns: 1fr; }
}

.ccn-profile-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px;
    overflow: hidden;
}
.ccn-profile-section h3 {
    font-size: 15px !important;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 14px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
    font-family: inherit;
    line-height: 1.4;
}

.ccn-info-list { }
.ccn-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #f9fafb;
}
.ccn-info-row:last-child { border-bottom: none; }
.ccn-info-key {
    font-size: 13px;
    color: #6b7280;
    font-family: inherit;
    flex-shrink: 0;
}
.ccn-info-val {
    font-size: 13px;
    color: #1d2327;
    font-weight: 500;
    font-family: inherit;
    text-align: right;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

@media (max-width: 480px) {
    .ccn-info-row {
        flex-direction: column;
        gap: 2px;
    }
    .ccn-info-val {
        text-align: left;
    }
}

/* Form fields */
.ccn-field {
    margin-bottom: 12px;
}
.ccn-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
    font-family: inherit;
}
.ccn-field input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    box-sizing: border-box;
    transition: border-color .15s;
    -webkit-appearance: none;
    appearance: none;
}
.ccn-field input:focus {
    outline: none;
    border-color: var(--ccn-accent, #1e3a5f);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}

/* Buttons */
.ccn-btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ccn-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 8px;
    border: 1px solid transparent; /* gelijke hoogte als outline-variant */
    cursor: pointer;
    transition: opacity .15s, background .15s, color .15s;
    -webkit-appearance: none;
    appearance: none;
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    box-sizing: border-box;
}
.ccn-btn:hover { opacity: 0.88; }
.ccn-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ccn-btn--outline {
    background: transparent;
    color: var(--ccn-accent, #1e3a5f);
    border: 1px solid var(--ccn-accent, #1e3a5f);
}
.ccn-btn--outline:hover {
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    opacity: 1;
}
.ccn-link {
    font-size: 13px;
    color: var(--ccn-accent, #1e3a5f);
    text-decoration: none;
    font-family: inherit;
}
.ccn-link:hover { text-decoration: underline; }

.ccn-pw-section {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

/* Feedback */
.ccn-feedback {
    margin-top: 8px;
    font-size: 13px;
    min-height: 18px;
    font-family: inherit;
}
.ccn-feedback--ok { color: #16a34a; }
.ccn-feedback--err { color: #dc2626; }

/* Weergavenaam inline bewerken (v2.18.0) */
.ccn-info-row--edit .ccn-info-val {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.ccn-dn-view {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ccn-dn-edit {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.ccn-dn-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ccn-dn-input {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    box-sizing: border-box;
    min-width: 160px;
    -webkit-appearance: none;
    appearance: none;
}
.ccn-dn-input:focus {
    outline: none;
    border-color: var(--ccn-accent, #1e3a5f);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}
.ccn-btn--sm {
    padding: 6px 14px;
    font-size: 13px;
}
.ccn-dn-hint {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    text-align: right;
}

@media (max-width: 480px) {
    .ccn-info-row--edit .ccn-info-val,
    .ccn-dn-view,
    .ccn-dn-form { align-items: flex-start; justify-content: flex-start; }
    .ccn-dn-hint { text-align: left; }
    .ccn-dn-input { min-width: 0; width: 100%; }
}

/* Modal */
.ccn-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}
.ccn-modal[hidden] { display: none !important; }
.ccn-modal--open { opacity: 1; }
.ccn-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.ccn-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    width: min(420px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(12px);
    transition: transform .2s;
}
.ccn-modal--open .ccn-modal__dialog { transform: translateY(0); }
.ccn-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #e5e7eb;
}
.ccn-modal__header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    font-family: inherit;
}
.ccn-modal__close {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.ccn-modal__close:hover { color: #374151; }
.ccn-modal__body { padding: 18px; }
.ccn-modal__footer {
    display: flex;
    gap: 8px;
    padding: 12px 18px 16px;
    border-top: 1px solid #e5e7eb;
}

/* Familie cards (hergebruikt uit cc-members-portal.css) */
.cc-family-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.cc-family-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}
.cc-family-card__name { font-weight: 600; font-size: 14px; color: #1d2327; }
.cc-family-card__team { font-size: 12px; color: #6b7280; margin-top: 4px; }
.cc-family-card__age { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.cc-family-card__role { font-size: 12px; color: #6b7280; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   v2.6.0 — Bottom Tab Bar (PWA standalone only)
   Hidden by default; shown via .cc-pwa-standalone on <html>
   ══════════════════════════════════════════════════════════════════════════ */

.ccn-bottom-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    /* Effen balkkleur; vult ook de home-indicator-zone (v2.23.5 — verloop verwijderd). */
    background: var(--ccn-accent, #1e3a5f);
    border-top: none;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    /* v2.24.5 — GEEN transform op deze fixed balk: op iOS verandert een transform
       de referentie naar de visual viewport (die per pagina varieert → balk te hoog).
       Zonder transform pint 'ie op de layout-viewport (echte onderrand). De bounce
       wordt tegengehouden door overscroll-behavior op de scroll-root, niet hier. */
}
/* v2.26.2 — "Draai je toestel"-overlay verwijderd (iOS kan een PWA niet hard in
   portret vergrendelen; de melding was ongewenst). Manifest-orientation blijft
   best-effort. */

.ccn-bottom-tabs__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
}
.ccn-bottom-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px 6px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color .15s;
    min-width: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.ccn-bottom-tab__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: rgba(255,255,255,0.6);
    transition: color .15s;
}
.ccn-bottom-tab__icon svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255,255,255,0.6);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .15s;
}
.ccn-bottom-tab__label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-family: inherit;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    text-align: center;
    transition: color .15s;
}
.ccn-bottom-tab--active .ccn-bottom-tab__icon { color: #fff; }
.ccn-bottom-tab--active .ccn-bottom-tab__icon svg { stroke: #fff; }
.ccn-bottom-tab--active .ccn-bottom-tab__label { color: #fff; }

.ccn-bottom-tab__more-dots {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    height: 28px;
}
.ccn-bottom-tab__more-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: background .15s;
}
.ccn-bottom-tab--active .ccn-bottom-tab__more-dots span {
    background: #fff;
}

/* ── "Meer" Bottom Sheet ──────────────────────────────────────────────── */

.ccn-more-sheet {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.ccn-more-sheet[hidden] { display: none !important; }
.ccn-more-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .25s;
}
.ccn-more-sheet__panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ccn-more-sheet--open .ccn-more-sheet__backdrop { opacity: 1; }
.ccn-more-sheet--open .ccn-more-sheet__panel { transform: translateY(0); }

.ccn-more-sheet__handle {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
}
.ccn-more-sheet__handle span {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #d1d5db;
}
.ccn-more-sheet__title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    padding: 4px 20px 12px;
    font-family: inherit;
}
.ccn-more-sheet__links {
    padding: 0 8px 8px;
}
.ccn-more-sheet__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: #374151;
    font-size: 15px;
    font-family: inherit;
    border-radius: 10px;
    transition: background .15s;
    border-left: 3px solid transparent;
}
.ccn-more-sheet__link:hover,
.ccn-more-sheet__link:active {
    background: #f3f4f6;
    text-decoration: none;
}
.ccn-more-sheet__link--active {
    color: var(--ccn-accent, #1e3a5f);
    font-weight: 600;
    border-left-color: var(--ccn-accent, #1e3a5f);
    background: #f0f4f8;
}
.ccn-more-sheet__link-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.ccn-more-sheet__divider {
    height: 1px;
    background: #f3f4f6;
    margin: 4px 16px;
}
.ccn-more-sheet__footer {
    padding: 8px 8px 12px;
}
.ccn-more-sheet__logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 16px);
    margin: 0 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: color .15s, border-color .15s;
}
.ccn-more-sheet__logout:hover {
    color: #374151;
    border-color: #d1d5db;
    text-decoration: none;
}

/* ── PWA App Header (v2.6.5) ───────────────────────────────────────── */
.ccn-pwa-header {
    /* --cc-css-build wordt via PHP-inline-style op CC_VERSION gezet (zie CC_Nav
       enqueue). Voorheen hier hardgecodeerd op "2.24.10" → nooit meegebumpt →
       de diagnose toonde altijd "mismatch". Nu zelf-actualiserend. */
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    /* Effen balkkleur (= thema-/balkkleur). Vult ook de safe-area-inset-zone
       netjes op iOS. (v2.23.5 — verloop verwijderd: rendert niet naadloos onder
       de iOS-statusbalk.) */
    background: var(--ccn-accent, #1e3a5f);
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
    overflow: visible; /* v2.8.1: avatar dropdown mag buiten header vallen */
}
.cc-pwa-standalone .ccn-pwa-header { display: flex; }
.ccn-pwa-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.ccn-pwa-header__user {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.ccn-pwa-header__user:hover { text-decoration: none; }
.ccn-pwa-header__logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}
/* v2.8.0: Avatar styles moved to bottom of file — see "Avatar Dropdown" section */
.ccn-pwa-header__name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
    line-height: 1.2;
}
.ccn-pwa-header__club {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-family: inherit;
}
.ccn-pwa-header__actions {
    display: flex;
    gap: 6px;
    overflow: visible; /* v2.8.1 */
}
.ccn-pwa-header__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}
.ccn-pwa-header__btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ccn-pwa-header__btn:active { background: rgba(255,255,255,0.2); }

/* v2.17.1 — Compacte app-balk op smalle schermen: minder verticale ruimte in
   de PWA. De content-offset (.ccn-page padding-top) wordt in dezelfde query
   meegeschaald zodat balk en content in sync blijven. */
@media (max-width: 600px) {
    .ccn-pwa-header {
        padding: 5px 12px;
        padding-top: calc(5px + env(safe-area-inset-top, 0px));
    }
    .ccn-pwa-header__logo { width: 26px; height: 26px; }
    .ccn-pwa-header__name { font-size: 14px; }
    .ccn-pwa-header__club { font-size: 10px; }
    .ccn-pwa-header__btn { width: 32px; height: 32px; }
    .ccn-pwa-header__btn svg { width: 16px; height: 16px; }
    .ccn-pwa-header__avatar { width: 32px; height: 32px; }
    .cc-pwa-standalone .ccn-page {
        padding-top: calc(42px + env(safe-area-inset-top, 0px));
    }
}

/* ── News Carousel ────────────────────────────────────────────────── */
.ccn-news-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.ccn-news-carousel__track {
    display: flex;
    gap: 12px;
    padding: 4px 14px 2px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    box-sizing: border-box;
}
.ccn-news-carousel__track::-webkit-scrollbar { display: none; }
/* v2.24.0 — WK-app-stijl: horizontale kaart, afbeelding links + tekst rechts. */
.ccn-news-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    gap: 12px;
    min-height: 116px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}
.ccn-news-card:hover { text-decoration: none; }
.ccn-news-card__img {
    position: relative;
    flex: 0 0 104px;
    align-self: stretch;
    background-size: cover;
    background-position: center;
    background-color: #e8edf3;
}
.ccn-news-card--nologo .ccn-news-card__img { background-color: var(--ccn-accent, #1e3a5f); }
.ccn-news-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    opacity: 0.5;
}
.ccn-news-card__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 74%;
    max-height: 64%;
    object-fit: contain;
}
.ccn-news-card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 11px 14px 11px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.ccn-news-card__badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--ccn-accent, #1e3a5f);
}
.ccn-news-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: #1d2327;
    font-family: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ccn-news-card__excerpt {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ccn-news-card__more {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ccn-accent, #1e3a5f);
    margin-top: 1px;
}
.ccn-news-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    padding: 8px 0;
}
.ccn-news-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    transition: background .2s;
}
.ccn-news-dot--active { background: var(--ccn-accent, #1e3a5f); }

/* ── Dashboard sections ───────────────────────────────────────────── */
.ccn-dashboard { padding: 0; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
.ccn-dash-section {
    padding: 14px 14px 6px;
    max-width: 100%;
    box-sizing: border-box;
}
.ccn-dash-section__title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 8px;
    font-family: inherit;
}

/* ── Notifications ────────────────────────────────────────────────── */
.ccn-notif-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
}
.ccn-notif-row:hover { background: #f9fafb; text-decoration: none; }
.ccn-notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    margin-top: 5px;
    flex-shrink: 0;
}
.ccn-notif-dot--read { background: #d1d5db; }
.ccn-notif-row__text { flex: 1; min-width: 0; }
.ccn-notif-row__msg {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    display: block;
    font-family: inherit;
}
.ccn-notif-row__time {
    font-size: 11px;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* ── Dashboard Widgets (2x2 grid) ─────────────────────────────────── */
.ccn-dash-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ccn-dash-wg {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s;
}
.ccn-dash-wg:hover {
    border-color: #d1d5db;
    text-decoration: none;
}
.ccn-dash-wg__icon {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 1;
}
.ccn-dash-wg__label {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    font-family: inherit;
    line-height: 1.3;
}
.ccn-dash-wg__value {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    font-family: inherit;
    margin-top: 2px;
}
.ccn-dash-wg__sub {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 1px;
    font-family: inherit;
}
.ccn-dash-wg__hint {
    font-size: 11px;
    color: #9ca3af;
    margin-top: auto;
    padding-top: 4px;
}

/* ── Sponsor Banner ───────────────────────────────────────────────── */
/* ── Sponsoren — vaste auto-scroll balk boven de footer (v2.24.0) ──────
   Wordt door cc-nav.js op de homepage naar een direct <body>-kind getild en
   met .ccn-sponsors--pinned zichtbaar gemaakt (fixed, boven de onderbalk). */
.ccn-sponsors {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px)); /* net boven de onderbalk */
    z-index: 99996; /* onder onderbalk (99998) + header (99997) */
    height: 72px;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-top: 1px solid #e5e7eb;
}
.ccn-sponsors--pinned { display: block; }
/* Eén sponsor per beeld; scroll-snap zodat handmatig swipen ook werkt. */
.ccn-sponsors__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ccn-sponsors__track::-webkit-scrollbar { display: none; }
.ccn-sponsors__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ccn-sponsors__logo {
    max-height: 52px;
    max-width: 66%;
    object-fit: contain;
    opacity: 0.9;
}
/* Extra ondermarge op de homepage zodat content niet achter de sponsorbalk valt. */
.cc-has-sponsors .ccn-content { padding-bottom: calc(142px + env(safe-area-inset-bottom, 0px)); }

/* ── Settings Sheet ───────────────────────────────────────────────── */
.ccn-settings-section {
    padding: 12px 20px;
}
.ccn-settings-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 2px;
    font-family: inherit;
}
.ccn-settings-hint {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 10px;
    font-family: inherit;
}
.ccn-settings-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ccn-settings-tab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    -webkit-tap-highlight-color: transparent;
}
.ccn-settings-tab-option:active { background: #f3f4f6; }
.ccn-settings-tab-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--ccn-accent, #1e3a5f);
}
.ccn-settings-tab-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.ccn-settings-tab-name { flex: 1; }
.ccn-settings-footer {
    padding: 12px 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
}
.ccn-settings-save {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--ccn-accent, #1e3a5f);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.ccn-settings-save:active { opacity: 0.85; }
.ccn-settings-save:disabled { opacity: 0.5; }
.ccn-settings-feedback {
    font-size: 13px;
    color: #16a34a;
    font-family: inherit;
}

/* ── PWA Standalone overrides (v2.6.0) ────────────────────────────────── */

/* v2.35.4 — portaal-brede horizontale-overflow-guard. Astra zet zelf overflow-x:hidden
   op z'n wrappers, Avada niet → een licht-overlopend element liet de héle pagina
   zijwaarts schuiven (Trainingsschema, Wedstrijden, …) alléén onder Avada. CC mag daar
   niet thema-afhankelijk van zijn. overflow-x:clip maakt GEEN scroll-container (anders
   dan hidden) → sticky-headers en position:fixed-chrome blijven werken. Interne
   scrollers (bv. de gantt met overflow-x:auto) behouden hun eigen zijwaartse scroll. */
.cc-pwa-standalone,
.cc-pwa-standalone body {
    max-width: 100%;
    overflow-x: clip;
}

/* v2.35.6 — Avada Fusion-carousels (fusion-carousel/swiper) initialiseren niet mee na
   CC's AJAX-navigatie in de PWA → hun slide-strip (honderden items × 320px) blijft een
   brede rij en laat de pagina zijwaarts schuiven (elke portaalpagina). Diagnose wees
   div.swiper-slide / div.fusion-carousel-item-wrapper aan (tot R5123 bij vw=393).
   Forceer clipping — precies wat een geïnitialiseerde swiper zelf ook doet. !important
   overschrijft een eventuele overflow-x:auto die Avada op een tussencontainer zet. */
.cc-pwa-standalone .fusion-carousel,
.cc-pwa-standalone .awb-carousel,
.cc-pwa-standalone .fusion-carousel-wrapper,
.cc-pwa-standalone .swiper,
.cc-pwa-standalone .swiper-container,
.cc-pwa-standalone .swiper-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
}

/* v2.35.8/2.35.9 — DE echte bron (diagnose-keten): Avada off-canvas "Sliding Bar"
   (div.avada-footer-scripts, cW864) initialiseert niet mee in de PWA en staat in-flow
   op ~864px breed → document breder dan de viewport → zijwaarts schuiven. max-width
   bleek niet genoeg (breedte komt ergens anders vandaan). Deze Avada-chrome
   (footer-scripts/off-canvas/sliding-bar) is in het ledenportaal ongebruikt, dus we
   halen 'm hard uit de layout — dan kán er geen 864px-element meer bestaan. De
   footer-scripts (analytics e.d.) zijn <script>-tags die al gedraaid hebben; display:none
   op de container is puur layout, geen functieverlies. */
.cc-pwa-standalone .avada-footer-scripts,
.cc-pwa-standalone .awb-off-canvas-wrap,
.cc-pwa-standalone .awb-off-canvas,
.cc-pwa-standalone .fusion-sliding-bar,
.cc-pwa-standalone .fusion-sliding-bar-area {
    display: none !important;
}

.cc-pwa-standalone .ccn-bottom-tabs { display: block; }
.cc-pwa-standalone .ccn-bottom-tabs__inner { display: flex; }
.cc-pwa-standalone .ccn-nav { display: none; }
.cc-pwa-standalone #ccn-drawer { display: none !important; }

/* Ruimte voor fixed header bovenaan + fixed bottom bar onderaan */
.cc-pwa-standalone .ccn-page {
    padding-top: calc(56px + env(safe-area-inset-top, 0px));
    /* v2.24.8 — 100dvh i.p.v. 100svh: de app-shell moet het VOLLEDIGE (dynamische)
       viewport vullen. Bij korte content (svh = klein, excl. statusbalk) vulde de
       pagina het scherm niet → iOS rapporteerde een kleinere innerHeight en de vaste
       onderbalk volgde die (te hoog). 100dvh reikt tot de echte onderrand. */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    overflow-x: clip;
    box-sizing: border-box;
}
.cc-pwa-standalone .ccn-content {
    flex: 1;
    max-width: 100%;
    width: 100%;
    overflow-x: clip;
    padding: 12px;
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}

/* v2.11.10: Avada builder secties worden nu via JavaScript verborgen/gestript
   (in class-cc-pwa.php DOMContentLoaded). CSS :has() verwijderd vanwege
   conflicten met service worker stale-while-revalidate caching. */

/* Pagina-wrapper chain: alles 100% breed, geen padding */
.cc-pwa-standalone,
.cc-pwa-standalone body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
    /* v2.24.3 — iOS-overscroll ("rubber-band") uit: voorkomt dat de vaste onderbalk
       tijdens het doorscrollen aan de onderrand even meebounced (intermittent gaatje). */
    overscroll-behavior-y: none;
}
.cc-pwa-standalone #wrapper,
.cc-pwa-standalone #wrapper_blank,
.cc-pwa-standalone .fusion-body,
.cc-pwa-standalone #main,
.cc-pwa-standalone .fusion-row,
.cc-pwa-standalone #content,
.cc-pwa-standalone .post-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow-x: clip !important;
}

/* ClubCore Assistant: verberg floating toggle in PWA standalone (v2.8.4: sparkle-knop vervangt hem) */
.cc-pwa-standalone .cca-toggle-btn { display: none !important; }

/* Laad-indicator boven in het scherm bij paginawisseling */
.ccn-loading-bar {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0px));
    left: 0;
    height: 3px;
    background: var(--ccn-accent, #1e3a5f);
    z-index: 999999;
    opacity: 0;
    width: 0;
    transition: none;
    pointer-events: none;
}
.ccn-loading-bar--active {
    opacity: 1;
    width: 70%;
    transition: width 1.5s cubic-bezier(.1,.5,.3,1);
}
.ccn-loading-bar--done {
    width: 100%;
    transition: width .15s ease, opacity .3s ease .15s;
    opacity: 0;
}

/* ── Module viewport fixes (alle module-plugins responsive in PWA) ──── */
.cc-pwa-standalone table {
    max-width: 100% !important;
    overflow-x: auto !important;
    display: block !important;
    word-break: break-word;
}
.cc-pwa-standalone table table {
    display: table !important;
}
.cc-pwa-standalone img,
.cc-pwa-standalone video,
.cc-pwa-standalone iframe {
    max-width: 100% !important;
    height: auto !important;
}
.cc-pwa-standalone pre,
.cc-pwa-standalone code {
    max-width: 100% !important;
    overflow-x: auto !important;
    word-break: break-all;
}
.cc-pwa-standalone .scv-portal,
.cc-pwa-standalone .slam-portal,
.cc-pwa-standalone .sla-wrap,
.cc-pwa-standalone .scts-wrap,
.cc-pwa-standalone .slw-wrap,
.cc-pwa-standalone .cc-panel,
.cc-pwa-standalone [class*="-portal"],
.cc-pwa-standalone [class*="-wrap"] {
    max-width: 100% !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
}
.cc-pwa-standalone .ccn-profile-grid {
    grid-template-columns: 1fr;
}
.cc-pwa-standalone .ccn-info-row {
    flex-direction: column;
    gap: 2px;
}
.cc-pwa-standalone .ccn-info-val {
    text-align: left;
}

/* ── v2.11.8: Avada page-title verbergen ──────────────────────────── */
.cc-pwa-standalone .fusion-page-title-bar,
.cc-pwa-standalone .fusion-page-title-wrapper {
    display: none !important;
}

/* ── v2.11.3: PWA sticky tabs + compacte module selectors ──────────── */
/* Tabs sticky onder de header */
/* v2.35.11 — top volgt de ÉCHTE headerhoogte via --ccn-header-h (gemeten in
   cc-nav.js) i.p.v. hardcoded 56px → geen gaatje meer naar de header. translateZ(0)
   + backface-visibility geven de sticky-balk een eigen compositielaag, wat de
   iOS-jitter t.o.v. de fixed header dempt. Fallback (var 2e waarde) = oude gedrag. */
.cc-pwa-standalone .ccn-tabs {
    position: sticky;
    top: var(--ccn-header-h, calc(56px + env(safe-area-inset-top, 0px)));
    z-index: 100;
    background: #fff;
    margin-bottom: 0;
    padding: 0 8px;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cc-pwa-standalone .ccn-tabs__tab {
    padding: 8px 12px;
    font-size: 13px;
}
/* Module selectors / favorieten: sticky onder de tabs — offset = echte header + echte tabs-hoogte. */
.cc-pwa-standalone .slw-team-selector,
.cc-pwa-standalone .scv-filter-bar,
.cc-pwa-standalone .scts-filter-bar {
    position: sticky;
    top: calc(var(--ccn-header-h, calc(56px + env(safe-area-inset-top, 0px))) + var(--ccn-tabs-h, 37px));
    z-index: 99;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    border-bottom: 1px solid #e5e7eb;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ── v2.8.0 Avatar Dropdown ────────────────────────────────────────── */
.ccn-avatar-wrap {
    position: relative;
}
.ccn-pwa-header__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.3);
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.ccn-pwa-header__avatar:hover { text-decoration: none; }

.ccn-avatar-dropdown {
    position: fixed;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
    min-width: 190px;
    z-index: 99999;
    overflow: hidden;
    animation: ccnDropIn 0.15s ease-out;
}
@keyframes ccnDropIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ccn-avatar-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1d2327;
    text-decoration: none;
    transition: background 0.1s;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}
.ccn-avatar-dropdown__item:hover {
    background: #f3f4f6;
    text-decoration: none;
}
.ccn-avatar-dropdown__item--logout {
    color: #dc2626;
    border-top: 1px solid #f0f0f0;
}
.ccn-avatar-dropdown__icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
button.ccn-avatar-dropdown__item {
    font-family: inherit;
    text-align: left;
}
.ccn-avatar-dropdown__emoji {
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}

/* ── v2.8.0 Notification Badge ─────────────────────────────────────── */
.ccn-pwa-header__btn--notif {
    position: relative;
}
.ccn-notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 1.5px solid var(--ccn-accent, #1e3a5f);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    pointer-events: none;
}

/* ── v2.8.0 Notifications Sheet ────────────────────────────────────── */
.ccn-notif-sheet__panel {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.ccn-notif-sheet__list {
    padding: 0 16px 16px;
}
.ccn-notif-sheet__loading,
.ccn-notif-sheet__empty {
    text-align: center;
    padding: 32px 16px;
    color: #6b7280;
    font-size: 14px;
}
.ccn-notif-sheet__item {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}
a.ccn-notif-sheet__item:hover {
    background: #f9fafb;
    text-decoration: none;
}
.ccn-notif-sheet__item:last-child {
    border-bottom: none;
}
.ccn-notif-sheet__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    margin-top: 5px;
}
.ccn-notif-sheet__item--unread .ccn-notif-sheet__dot {
    background: var(--ccn-accent, #1e3a5f);
}
.ccn-notif-sheet__content {
    flex: 1;
    min-width: 0;
}
.ccn-notif-sheet__title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    line-height: 1.3;
}
.ccn-notif-sheet__item--unread .ccn-notif-sheet__title {
    color: #000;
}
.ccn-notif-sheet__body {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ccn-notif-sheet__time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ── v2.8.1 Assistant Button ───────────────────────────────────────── */
.ccn-pwa-header__btn--assist svg {
    fill: #fff;
    stroke: none;
    width: 17px;
    height: 17px;
}
.ccn-pwa-header__btn--assist {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}

/* ── v2.8.1 Settings Info Section ──────────────────────────────────── */
.ccn-settings-info {
    text-align: center;
    padding: 16px 16px 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}
.ccn-settings-info__row {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.ccn-settings-info__version {
    font-weight: 600;
    color: #374151;
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;
    font-size: 12px;
    background: #f3f4f6;
    padding: 1px 6px;
    border-radius: 4px;
}
.ccn-settings-info__credit {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ── v2.8.4 Assistant / Helpcentrum Sheet ──────────────────────────── */
.ccn-assist-sheet__panel {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.ccn-assist-sheet__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 8px;
}
.ccn-assist-sheet__icon {
    font-size: 20px;
    line-height: 1;
}
.ccn-assist-sheet__section {
    padding: 8px 16px 12px;
}
.ccn-assist-sheet__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 8px;
}

/* FAQ Accordion */
.ccn-assist-faq__item {
    border-bottom: 1px solid #f0f0f0;
}
.ccn-assist-faq__item:last-child {
    border-bottom: none;
}
.ccn-assist-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1d2327;
    text-align: left;
    gap: 8px;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.ccn-assist-faq__q:active {
    color: var(--ccn-accent, #1e3a5f);
}
.ccn-assist-faq__chevron {
    width: 16px;
    height: 16px;
    stroke: #9ca3af;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ccn-assist-faq__q[aria-expanded="true"] .ccn-assist-faq__chevron {
    transform: rotate(180deg);
    stroke: var(--ccn-accent, #1e3a5f);
}
.ccn-assist-faq__a {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    padding: 0 0 12px;
}

/* Contact */
.ccn-assist-sheet__contact-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 8px;
}
.ccn-assist-sheet__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ccn-accent, #1e3a5f);
    text-decoration: none;
    transition: background 0.1s;
}
.ccn-assist-sheet__contact-link:hover {
    background: #e5e7eb;
    text-decoration: none;
}
.ccn-assist-sheet__contact-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Footer */
.ccn-assist-sheet__footer {
    text-align: center;
    padding: 12px 16px 16px;
    font-size: 11px;
    color: #9ca3af;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

/* v2.8.4 Chatbot launch button */
.ccn-assist-sheet__chatbot-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 32px);
    margin: 4px 16px 12px;
    padding: 14px 14px;
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: filter 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.ccn-assist-sheet__chatbot-btn:active {
    filter: brightness(0.9);
}
.ccn-assist-sheet__chatbot-btn strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.ccn-assist-sheet__chatbot-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.75;
    font-weight: 400;
    margin-top: 1px;
}
.ccn-assist-sheet__chatbot-icon {
    width: 28px;
    height: 28px;
    fill: rgba(255,255,255,0.9);
    flex-shrink: 0;
}
/* v2.11.3: Avatar afbeelding als icoon */
.ccn-assist-sheet__chatbot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}
.ccn-assist-sheet__chatbot-arrow {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-left: auto;
}

/* v2.8.4: Hide native floating chatbot toggle in PWA — sparkle button replaces it */

/* ── v2.9.0: Feedback Sheet ──────────────────────────────────────────── */
.ccn-more-sheet__feedback-link {
    background: none;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 8px;
    padding-top: 14px;
    width: 100%;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
}
.ccn-feedback-form { padding: 0 4px; }
.ccn-feedback-type-group {
    display: flex;
    gap: 10px;
    border: none;
    padding: 0;
    margin: 12px 0 16px;
}
.ccn-feedback-chip input { display: none; }
.ccn-feedback-chip__inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.1);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    user-select: none;
}
.ccn-feedback-chip input:checked + .ccn-feedback-chip__inner--suggestie {
    border-color: var(--ccn-accent, #1e3a5f);
    background: rgba(30,58,95,0.08);
    color: var(--ccn-accent, #1e3a5f);
}
.ccn-feedback-chip input:checked + .ccn-feedback-chip__inner--bug {
    border-color: #dc2626;
    background: rgba(220,38,38,0.06);
    color: #dc2626;
}
.ccn-feedback-field { margin-bottom: 14px; }
.ccn-feedback-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}
.ccn-feedback-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color .15s;
    box-sizing: border-box;
    background: inherit;
    color: inherit;
}
.ccn-feedback-field textarea:focus {
    outline: none;
    border-color: var(--ccn-accent, #1e3a5f);
}
.ccn-feedback-submit {
    width: 100%;
    padding: 14px;
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .15s;
}
.ccn-feedback-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.ccn-feedback-result {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.ccn-feedback-result--ok {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.ccn-feedback-result--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ── Dashboard Feedback Widget (v2.10.0) ─────────────────────── */

.ccn-dash-fb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}
.ccn-dash-fb-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ccn-dash-fb-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0,0,0,0.02);
}
.ccn-dash-fb-item--new {
    background: rgba(59,130,246,0.06);
}
.ccn-dash-fb-item__icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.4;
}
.ccn-dash-fb-item__body {
    min-width: 0;
    flex: 1;
}
.ccn-dash-fb-item__msg {
    font-size: 13px;
    line-height: 1.4;
    color: var(--ccn-text, #1a1a1a);
    word-break: break-word;
}
.ccn-dash-fb-item__meta {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
}
.ccn-dash-fb-link {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--ccn-accent, #1e3a5f);
    padding: 10px;
    margin-top: 4px;
    text-decoration: none;
    border-radius: 8px;
}
.ccn-dash-fb-link:hover {
    background: rgba(0,0,0,0.03);
}

/* ── Push Compose Sheet (v2.10.0) ────────────────────────────── */

.ccn-push-form {
    padding: 0 4px;
}
.ccn-push-field {
    margin-bottom: 14px;
}
.ccn-push-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ccn-text, #1a1a1a);
}
.ccn-push-field input[type="text"],
.ccn-push-field textarea,
.ccn-push-field select,
.ccn-push-field input[type="datetime-local"] {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--ccn-text, #1a1a1a);
    transition: border-color 0.15s;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.ccn-push-field input:focus,
.ccn-push-field textarea:focus,
.ccn-push-field select:focus {
    outline: none;
    border-color: var(--ccn-accent, #1e3a5f);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}
.ccn-push-submit {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: var(--ccn-accent, #1e3a5f);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity 0.15s;
}
.ccn-push-submit:hover { opacity: 0.9; }
.ccn-push-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Home-feed: geaggregeerde updatelijst (v2.19.0) ─────────────────── */
.ccn-feed {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ccn-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background .12s;
}
a.ccn-feed-item:hover { background: #f9fafb; text-decoration: none; }
.ccn-feed-item__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}
.ccn-feed-item--result .ccn-feed-item__icon,
.ccn-feed-item--match .ccn-feed-item__icon {
    background: rgba(30,58,95,0.08);
}
.ccn-feed-item--training .ccn-feed-item__icon {
    background: rgba(22,163,74,0.10);
}
.ccn-feed-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ccn-feed-item__title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    font-family: inherit;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ccn-feed-item__sub {
    font-size: 12px;
    color: #6b7280;
    font-family: inherit;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ccn-feed-item__time {
    flex-shrink: 0;
    font-size: 11px;
    color: #9ca3af;
    font-family: inherit;
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 2px;
}

/* ── Nieuws, verslagen & release notes (v2.20.0) ───────────────────── */
.cc-news { max-width: 720px; margin: 0 auto; }
.cc-news-h3 {
    font-size: 15px; font-weight: 700; color: #1d2327;
    margin: 22px 0 10px; display: flex; align-items: center; gap: 8px; font-family: inherit;
}
.cc-news-count {
    background: #dc2626; color: #fff; font-size: 11px; font-weight: 700;
    min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
}
.cc-news-admin-only {
    font-size: 11px; font-weight: 500; color: #9ca3af; background: #f3f4f6;
    padding: 2px 7px; border-radius: 5px; text-transform: none;
}
.cc-news-empty { color: #6b7280; font-size: 13px; }

/* Badges */
.cc-news-badge {
    display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .3px; padding: 2px 7px; border-radius: 5px;
    background: rgba(30,58,95,0.10); color: var(--ccn-accent, #1e3a5f);
}
.cc-news-badge--verslag { background: rgba(22,163,74,0.12); color: #15803d; }
.cc-news-badge--release { background: rgba(147,51,234,0.12); color: #7e22ce; }
.cc-news-team { font-size: 12px; color: #6b7280; font-weight: 600; }

/* Indien-formulier */
.cc-news-submit { margin: 8px 0 4px; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.cc-news-submit > summary {
    cursor: pointer; padding: 12px 14px; font-weight: 600; font-size: 14px;
    background: #f9fafb; list-style: none;
}
.cc-news-submit > summary::-webkit-details-marker { display: none; }
.cc-news-form { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.cc-news-field { display: flex; flex-direction: column; gap: 5px; }
.cc-news-field label { font-size: 13px; font-weight: 500; color: #374151; }
.cc-news-field input[type="text"],
.cc-news-field textarea {
    width: 100%; padding: 9px 12px; border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 14px; font-family: inherit; box-sizing: border-box; -webkit-appearance: none; appearance: none;
}
.cc-news-soort { flex-direction: row; gap: 18px; }
.cc-news-soort label { display: flex; align-items: center; gap: 6px; font-weight: 500; cursor: pointer; }
.cc-news-previews { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cc-news-preview { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid #e5e7eb; }
.cc-news-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Goedkeur-inbox */
.cc-news-inbox-item {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 10px; margin-bottom: 8px;
}
.cc-news-inbox-item__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cc-news-inbox-item__title { font-size: 14px; font-weight: 600; color: #1d2327; }
.cc-news-inbox-item__meta { font-size: 12px; color: #9ca3af; }
.cc-news-inbox-item__actions { display: flex; gap: 6px; flex-shrink: 0; }

/* Release notes */
.cc-news-release-item { border-left: 3px solid #7e22ce; padding: 4px 0 4px 12px; margin-bottom: 14px; }
.cc-news-release-item__head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cc-news-release-item__title { font-weight: 700; font-size: 14px; }
.cc-news-release-item__ver { font-size: 12px; color: #7e22ce; font-weight: 600; }
.cc-news-release-item__date { font-size: 12px; color: #9ca3af; margin-left: auto; }
.cc-news-release-item__body { font-size: 13px; color: #374151; }
.cc-news-release-item__body p { margin: 6px 0; }

/* Nieuwslijst */
.cc-news-list { display: flex; flex-direction: column; gap: 12px; }
.cc-news-card2 {
    display: flex; gap: 12px; text-decoration: none; color: inherit;
    border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; background: #fff;
}
.cc-news-card2:hover { border-color: #d1d5db; text-decoration: none; }
.cc-news-card2__img {
    flex: 0 0 96px; min-height: 96px; background-size: cover; background-position: center;
    background-color: #eef2f7; display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.cc-news-card2__body { flex: 1; min-width: 0; padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; }
.cc-news-card2__badges { display: flex; align-items: center; gap: 8px; }
.cc-news-card2__title { font-size: 15px; font-weight: 700; color: #1d2327; line-height: 1.25; }
.cc-news-card2__excerpt { font-size: 13px; color: #6b7280; line-height: 1.35; }
.cc-news-card2__date { font-size: 11px; color: #9ca3af; margin-top: auto; }

/* Detailweergave */
.cc-news-back { display: inline-block; margin-bottom: 12px; font-size: 13px; text-decoration: none; color: var(--ccn-accent, #1e3a5f); }
.cc-news-article { }
.cc-news-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cc-news-title { font-size: 22px; font-weight: 800; line-height: 1.2; margin: 4px 0; }
.cc-news-meta { font-size: 13px; color: #9ca3af; margin-bottom: 14px; }
.cc-news-hero-img img { width: 100%; height: auto; border-radius: 12px; display: block; margin-bottom: 14px; }
.cc-news-body { font-size: 15px; line-height: 1.6; color: #1f2937; }
.cc-news-body p { margin: 0 0 12px; }
.cc-news-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin-top: 16px; }
.cc-news-gallery__item img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; display: block; }

/* ── Meldingsvoorkeuren-tab in profiel (v2.22.0) ───────────────────── */
.cc-notifpref-intro { font-size: 13px; color: #6b7280; margin: 0 0 12px; }
.cc-notifpref-hint {
    font-size: 13px; color: #92400e; background: #fef3c7;
    border: 1px solid #fde68a; border-radius: 10px; padding: 10px 12px; margin: 0 0 14px;
}
.cc-notifpref-list { display: flex; flex-direction: column; gap: 2px; }
.cc-notifpref-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 4px; border-bottom: 1px solid #f3f4f6; cursor: pointer;
}
.cc-notifpref-row:last-child { border-bottom: none; }
.cc-notifpref-row__left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.cc-notifpref-row__icon { font-size: 20px; flex-shrink: 0; }
.cc-notifpref-row__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cc-notifpref-row__name { font-size: 14px; font-weight: 600; color: #1d2327; }
.cc-notifpref-row__desc { font-size: 12px; color: #9ca3af; }
.cc-notifpref-cb {
    flex-shrink: 0; width: 20px; height: 20px; accent-color: var(--ccn-accent, #1e3a5f); cursor: pointer;
}
