/* ccc-widgets.css — Weather, News, Meetings widget styles
 * Matches existing capecodcivicsguide.com design: dark navy, teal accents, Inter/Playfair
 * v1.0 — 2026-03-22
 */

/* ── Weather Widget ── */
.ccc-weather-current {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d9a 100%);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 12px;
}

.ccc-weather-temp {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1;
}

.ccc-weather-desc {
    font-size: 1.1em;
    font-weight: 500;
}

.ccc-weather-detail {
    font-size: 0.85em;
    opacity: 0.8;
}

.ccc-weather-forecast {
    display: flex;
    gap: 12px;
}

.ccc-weather-day {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.ccc-weather-day-name {
    font-weight: 600;
    font-size: 0.85em;
    color: #2e7d9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ccc-weather-day-temp {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #1a2332;
    margin: 4px 0;
}

.ccc-weather-day-desc {
    font-size: 0.8em;
    color: #666;
}

.ccc-weather-alerts {
    margin-top: 12px;
}

.ccc-weather-alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px 14px;
    color: #856404;
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 6px;
}

.ccc-weather-updated {
    font-size: 0.75em;
    color: #999;
    text-align: right;
    margin-top: 8px;
}

.ccc-weather-error {
    color: #999;
    font-style: italic;
    padding: 10px;
}

/* ── Meetings Widget ── */

/* Region accordion */
.ccc-meetings-regions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ccc-region-group {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.ccc-region-group.ccc-region-open {
    border-color: #2e7d9a;
}

.ccc-region-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.ccc-region-header:hover {
    background: linear-gradient(135deg, #e4ecf4 0%, #dce3ec 100%);
}

.ccc-region-open .ccc-region-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d9a 100%);
    color: #fff;
}

.ccc-region-arrow {
    font-size: 0.75em;
    width: 16px;
    flex-shrink: 0;
}

.ccc-region-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: 700;
    flex: 1;
}

.ccc-region-count {
    font-size: 0.8em;
    opacity: 0.7;
    font-weight: 500;
}

.ccc-region-open .ccc-region-count {
    opacity: 0.85;
}

.ccc-region-body {
    padding: 8px;
}

.ccc-meetings-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ccc-meeting-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.ccc-meeting-item:hover {
    border-color: #2e7d9a;
}

.ccc-meeting-date {
    min-width: 65px;
    text-align: center;
    flex-shrink: 0;
}

.ccc-meeting-day {
    display: block;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    color: #2e7d9a;
    letter-spacing: 0.5px;
}

.ccc-meeting-dom {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: 700;
    color: #1a2332;
}

.ccc-meeting-info {
    flex: 1;
}

.ccc-meeting-title {
    font-weight: 600;
    color: #1a2332;
    font-size: 0.95em;
}

.ccc-meeting-town-name {
    margin-bottom: 2px;
}

.ccc-town-link {
    font-weight: 700;
    color: #1a3a5c;
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Playfair Display', serif;
}

.ccc-town-link:hover {
    color: #2e7d9a;
    text-decoration: underline;
}

.ccc-board-link {
    color: #2e7d9a;
    text-decoration: none;
}

.ccc-board-link:hover {
    text-decoration: underline;
}

.ccc-meeting-meta {
    font-size: 0.8em;
    color: #777;
    margin-top: 2px;
}

.ccc-meeting-zoom {
    display: inline-block;
    padding: 3px 10px;
    background: #27ae60;
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.72em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    margin-left: 6px;
}

.ccc-meeting-zoom:hover {
    background: #219a52;
}

.ccc-meeting-agenda {
    display: inline-block;
    padding: 4px 12px;
    background: #2e7d9a;
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.78em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.ccc-meeting-agenda:hover {
    background: #1a3a5c;
}

.ccc-meetings-footer {
    text-align: center;
    margin-top: 16px;
}

.ccc-meetings-footer a {
    color: #2e7d9a;
    font-weight: 600;
    text-decoration: none;
}

.ccc-meetings-footer a:hover {
    text-decoration: underline;
}

.ccc-meetings-updated {
    margin-bottom: 12px;
}

/* ── Town Sub-Accordion (nested inside region) ── */
.ccc-town-group {
    margin-bottom: 2px;
}

.ccc-town-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(26, 58, 92, 0.04);
    border: 1px solid #e8edf2;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.ccc-town-header:hover {
    background: rgba(26, 58, 92, 0.08);
}

.ccc-town-arrow {
    color: #2e7d9a;
    font-size: 0.75em;
    flex-shrink: 0;
}

.ccc-town-header-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05em;
    color: #1a3a5c;
    text-decoration: none;
    flex: 1;
}

.ccc-town-header-name:hover {
    color: #2e7d9a;
    text-decoration: underline;
}

.ccc-town-count {
    background: #2e7d9a;
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.ccc-town-body {
    padding: 4px 0 8px 20px;
}

/* ── Elections Page ── */

/* Key dates banner */
.ccc-key-dates {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d9a 100%);
    border-radius: 10px;
    padding: 20px 24px;
    color: #fff;
    margin-bottom: 24px;
}

.ccc-key-dates h3 {
    margin: 0 0 14px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
}

.ccc-key-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.ccc-key-dates-grid > div {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 10px 14px;
}

.ccc-key-dates-grid strong {
    display: block;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 2px;
}

/* Race cards */
.ccc-race {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ccc-race:hover {
    border-color: #2e7d9a;
    box-shadow: 0 2px 8px rgba(46, 125, 154, 0.1);
}

.ccc-race-type {
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2e7d9a;
    margin-bottom: 4px;
}

.ccc-race-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15em;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 6px;
}

.ccc-race-detail {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

.ccc-race-detail a {
    color: #2e7d9a;
    font-weight: 600;
    text-decoration: none;
}

.ccc-race-detail a:hover {
    text-decoration: underline;
}

.ccc-race-date {
    font-size: 0.8em;
    color: #888;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f4f8;
}

/* Candidates list */
.ccc-race-candidates {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ccc-race-candidate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92em;
}

.ccc-race-party {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Town accordion (elections) */
.ccc-elec-town {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.ccc-elec-town-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.ccc-elec-town-hdr:hover {
    background: linear-gradient(135deg, #e4ecf4 0%, #dce3ec 100%);
}

.ccc-elec-town.ccc-elec-open .ccc-elec-town-hdr {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d9a 100%);
    color: #fff;
}

.ccc-elec-town-arrow {
    font-size: 0.75em;
    width: 16px;
    flex-shrink: 0;
}

.ccc-elec-town-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: 700;
    flex: 1;
}

.ccc-elec-town-body {
    padding: 12px 18px;
}

/* Region accordion (elections) */
.ccc-elec-region {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.ccc-elec-region-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    cursor: pointer;
    user-select: none;
}

.ccc-elec-region-arrow {
    font-size: 0.75em;
    width: 16px;
}

.ccc-elec-region-body {
    padding: 12px 18px;
}

/* Elections footer + source */
.ccc-elections-updated {
    font-size: 0.78em;
    color: #999;
    text-align: center;
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.ccc-town-updated {
    font-size: 0.75em;
    color: #aaa;
    text-align: right;
    margin-top: 10px;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
}

.ccc-race-source {
    margin-top: 6px;
}

.ccc-race-source a {
    font-size: 0.78em;
    color: #2e7d9a;
    font-weight: 600;
    text-decoration: none;
}

.ccc-race-source a:hover {
    text-decoration: underline;
}

/* Voter resources */
.ccc-voter-resources h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

/* Ballot questions */
.ccc-ballot-questions h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

/* ── Fix light-on-light text in town page sections ── */
/* Force readable dark text ONLY on elements that don't sit inside dark containers.
   Dark containers: .why-stat, DID YOU KNOW boxes, gradient overlays, etc. */

/* Stat boxes: dark bg — text must be WHITE */
.why-stat .why-stat-number {
    color: #fff !important;
}
.why-stat .why-stat-label {
    color: #c8e8f4 !important;
}

/* DID YOU KNOW carousel — dark bg, keep light text */
.dyk-fact {
    color: #c8e8f4 !important;
}

/* Section tab headers — keep white text on dark bg */
.ccc-tab .ccc-tab-title,
.ccc-tab .ccc-tab-icon,
.ccc-tab .ccc-tab-chevron {
    color: #fff !important;
}

/* Explore More cards + any dark-bg card links — <strong> inherits from
   ancestor .town-page (dark navy) instead of parent <a> (light).
   Force white for all strong/bold text inside dark card containers. */
a[style*="rgba(15,25,40"] strong,
a[style*="rgba(15, 25, 40"] strong,
a[style*="rgba(10,20,35"] strong,
a[style*="rgba(10, 20, 35"] strong,
div[style*="rgba(10,20,35"] strong,
div[style*="rgba(10, 20, 35"] strong {
    color: #fff !important;
}

/* Also catch any card container with explicit dark bg */
div[style*="background:#0f1922"] strong,
div[style*="background: #0f1922"] strong,
div[style*="background:#1a2332"] strong,
div[style*="background: #1a2332"] strong {
    color: #fff !important;
}

/* Fix light-on-light: inline colors designed for dark bg but sitting on white.
   These specific colors appear across multiple WP pages as section subtitles. */
.town-page p[style*="#b8d4e4"],
.town-page p[style*="#89b0c4"],
.town-page p[style*="#a8c0d0"],
.town-page p[style*="#8ab0c8"],
.town-page p[style*="#8a9fb0"],
.town-page p[style*="#c8e8f4"] {
    color: #3a5068 !important;
}

/* Same fix for spans with light inline colors on white bg */
.town-page span[style*="#b8d4e4"],
.town-page span[style*="#89b0c4"],
.town-page span[style*="#a8c0d0"],
.town-page span[style*="#8ab0c8"],
.town-page span[style*="#c8e8f4"] {
    color: #3a5068 !important;
}

/* Preserve these same colors INSIDE dark containers (don't override there) */
div[style*="rgba(10,20,35"] p[style*="#b8d4e4"],
div[style*="rgba(10, 20, 35"] p[style*="#b8d4e4"],
div[style*="rgba(15,25,40"] p[style*="#b8d4e4"],
div[style*="rgba(15, 25, 40"] p[style*="#b8d4e4"],
div[style*="#0f1922"] p[style*="#b8d4e4"],
div[style*="rgba(10,20,35"] p[style*="#89b0c4"],
div[style*="rgba(10, 20, 35"] p[style*="#89b0c4"] {
    color: #b8d4e4 !important;
}

/* ── Hide Blocksy theme menu bar (keep logo banner) ── */
/* DIV[0] in header.ct-header = the old nav menu row with HOME/COUNTY GOV/UPPER CAPE etc. */
header.ct-header > div:first-child {
    display: none !important;
}

/* ── Global Navigation Bar ── */
.ccc-nav {
    background: linear-gradient(135deg, #1a2332 0%, #1a3a5c 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ccc-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
}

.ccc-nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.15em;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    margin-right: auto;
}

.ccc-nav-brand:hover {
    color: #9fd4e8 !important;
}

.ccc-nav-logo {
    height: 38px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 3px;
}

.ccc-nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.3em;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.ccc-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ccc-nav-link {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 0.88em;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.ccc-nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

/* Dropdown */
.ccc-nav-dropdown {
    position: relative;
}

.ccc-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a2332;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    min-width: 180px;
    padding: 6px 0;
    z-index: 10000;
}

.ccc-nav-dropdown-menu.ccc-dropdown-visible {
    display: block;
}

.ccc-nav-dropdown:hover .ccc-nav-dropdown-menu {
    display: block;
}

.ccc-nav-dropdown-menu a {
    display: block;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    padding: 7px 16px;
    font-size: 0.85em;
    transition: background 0.15s;
}

.ccc-nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}

/* Nav search */
.ccc-nav-search {
    margin-left: 8px;
}

.ccc-nav-search-input {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.82em;
    width: 130px;
    transition: width 0.3s, background 0.2s;
}

.ccc-nav-search-input:focus {
    width: 200px;
    background: rgba(255,255,255,0.18);
    outline: none;
    border-color: #2e7d9a;
}

.ccc-nav-search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ── Meetings Hub ── */
.ccc-hub-controls {
    margin-bottom: 16px;
}

.ccc-hub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ccc-filter-btn {
    padding: 5px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 20px;
    background: #fff;
    color: #555;
    font-size: 0.82em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.ccc-filter-btn:hover {
    border-color: #2e7d9a;
    color: #2e7d9a;
}

.ccc-filter-btn.ccc-filter-active {
    background: #1a3a5c;
    color: #fff;
    border-color: #1a3a5c;
}

/* ── Today Feed ── */
.ccc-today-feed {
    max-width: 800px;
    margin: 0 auto;
}

.ccc-today-header {
    text-align: center;
    padding: 20px 0;
}

.ccc-today-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #1a2332;
}

.ccc-today-section {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.ccc-today-section-title {
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2e7d9a;
    margin-bottom: 8px;
}

.ccc-today-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: #1a3a5c;
    display: inline-block;
    margin-right: 8px;
}

.ccc-today-stat-label {
    font-size: 0.95em;
    color: #555;
}

.ccc-today-meeting-list {
    margin-top: 10px;
}

.ccc-today-meeting {
    padding: 6px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.9em;
}

.ccc-today-meeting:last-child {
    border-bottom: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ccc-nav-toggle {
        display: block;
    }

    .ccc-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a2332;
        padding: 10px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .ccc-nav-links.ccc-nav-open {
        display: flex;
    }

    .ccc-nav-link {
        padding: 10px 20px;
    }

    .ccc-nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    .ccc-nav-search {
        margin: 8px 20px;
    }

    .ccc-nav-search-input {
        width: 100%;
    }

    .ccc-nav-search-input:focus {
        width: 100%;
    }

    .ccc-hub-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }


    .ccc-weather-current {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .ccc-weather-forecast {
        flex-direction: column;
    }

    .ccc-meeting-item {
        flex-wrap: wrap;
    }

    .ccc-meeting-date {
        min-width: auto;
    }

    .ccc-today-meeting-card {
        flex-direction: column;
        text-align: center;
    }

    .ccc-today-meeting-time {
        min-width: auto;
    }

    .ccc-today-meeting-actions {
        justify-content: center;
    }
}

/* ── Today's Meetings (homepage hero) ── */
.ccc-today-meetings {
    background: linear-gradient(135deg, #0f1922 0%, #1a3a5c 100%);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
    color: #fff;
}

.ccc-today-meetings-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 4px;
}

.ccc-today-meetings-subtitle {
    font-size: 0.9em;
    opacity: 0.6;
    margin-bottom: 16px;
}

.ccc-today-meeting-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s;
}

.ccc-today-meeting-card:hover {
    border-color: rgba(255,255,255,0.25);
}

.ccc-today-meeting-card.ccc-live {
    border-color: #27ae60;
    box-shadow: 0 0 12px rgba(39, 174, 96, 0.3);
}

.ccc-live-badge {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: ccc-pulse 2s ease-in-out infinite;
}

@keyframes ccc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.ccc-today-meeting-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.ccc-today-meeting-info {
    flex: 1;
}

.ccc-today-meeting-board {
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 2px;
}

.ccc-today-meeting-town {
    font-size: 0.85em;
    opacity: 0.7;
}

.ccc-today-meeting-location {
    font-size: 0.8em;
    opacity: 0.6;
    margin-top: 2px;
}

.ccc-today-meeting-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}

.ccc-today-join-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #27ae60;
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ccc-today-join-btn:hover {
    background: #219a52;
}

.ccc-today-agenda-btn {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
}

.ccc-today-agenda-btn:hover {
    background: rgba(255,255,255,0.2);
}

.ccc-today-empty {
    text-align: center;
    padding: 12px;
    opacity: 0.8;
    font-size: 0.95em;
}
