/* Content Calendar Pro - Public (front-end) styles */

.ccx-calendar {
    margin: 1em 0;
    font-family: inherit;
    position: relative;
}

/* Filter bar */
.ccx-calendar-filters {
    margin-bottom: 1em;
}
.ccx-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75em 1.5em;
}
.ccx-filter-bar label {
    display: inline-flex;
    align-items: center;
    margin: 0;
}
.ccx-filter-bar select {
    min-width: 140px;
    padding: 0.4em 0.6em;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 0.95em;
}

/* View toggle */
.ccx-calendar-view-toggle {
    margin-bottom: 1em;
}
.ccx-view-btn {
    display: inline-block;
    padding: 0.4em 0.9em;
    margin-right: 0.25em;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    background: #f0f0f1;
    text-decoration: none;
    color: #1d2327;
    font-size: 0.95em;
}
.ccx-view-btn:hover {
    background: #e0e0e0;
}
.ccx-view-btn.active {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

/* List view */
.ccx-calendar-list .ccx-calendar-list-content {
    transition: opacity 0.2s ease;
}
.ccx-calendar-list.ccx-loading .ccx-calendar-list-content {
    opacity: 0.6;
}
.ccx-calendar-list .ccx-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ccx-calendar-list .ccx-event-item {
    padding: 0.5em 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5em 1em;
}
.ccx-calendar-list .ccx-event-date {
    font-weight: 600;
    min-width: 7em;
}
.ccx-calendar-list .ccx-event-title {
    text-decoration: none;
    font-weight: 500;
}
.ccx-calendar-list .ccx-event-title:hover {
    text-decoration: underline;
}
.ccx-calendar-list .ccx-event-meta {
    color: #666;
    font-size: 0.9em;
}
.ccx-no-events {
    color: #666;
    font-style: italic;
}

/* Month view - 7-column grid */
.ccx-calendar-month .ccx-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    gap: 1em;
}
.ccx-calendar-month .ccx-month-prev,
.ccx-calendar-month .ccx-month-next {
    padding: 0.4em 0.75em;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    background: #f0f0f1;
    cursor: pointer;
    font-size: 1em;
}
.ccx-calendar-month .ccx-month-prev:hover,
.ccx-calendar-month .ccx-month-next:hover {
    background: #e0e0e0;
}
.ccx-calendar-month .ccx-month-title {
    margin: 0;
    font-size: 1.25em;
}
.ccx-month-grid-wrap {
    overflow-x: auto;
}
.ccx-calendar-month .ccx-month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    min-width: 320px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}
.ccx-month-grid-head {
    display: contents;
}
.ccx-month-grid-head-cell {
    padding: 0.5em;
    background: #f0f0f1;
    font-weight: 600;
    font-size: 0.85em;
    text-align: center;
}
.ccx-month-grid-body {
    display: contents;
}
.ccx-month-grid-row {
    display: contents;
}
.ccx-day-cell {
    min-height: 80px;
    padding: 4px;
    background: #fff;
    font-size: 0.9em;
}
.ccx-day-cell--empty {
    background: #fafafa;
    min-height: 60px;
}
.ccx-day-cell--today {
    background: #f0f6fc;
}
.ccx-day-num {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}
.ccx-event-pills {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ccx-event-pill {
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
    line-height: 1.2;
    border: none;
    background: #e0e0e0;
    color: #1d2327;
    text-align: left;
}
.ccx-event-pill:hover,
.ccx-event-pill:focus {
    opacity: 0.9;
    outline: 1px solid #2271b1;
}
.ccx-event-pill-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ccx-event-pill-time {
    display: block;
    font-size: 0.9em;
    color: #666;
}
/* Industry color pills (default palette) */
.ccx-industry-default { background: #8c8f94; color: #fff; }
.ccx-industry-retail { background: #2271b1; color: #fff; }
.ccx-industry-finance { background: #00a32a; color: #fff; }
.ccx-industry-health { background: #d63638; color: #fff; }
.ccx-industry-tech { background: #dba617; color: #1d2327; }
.ccx-industry-education { background: #7c3aed; color: #fff; }

/* Event detail popover */
.ccx-event-detail-popover {
    position: absolute;
    z-index: 100;
    padding: 0.75em 1em;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 320px;
}
.ccx-event-detail-popover[hidden] {
    display: none !important;
}
.ccx-event-detail-content p {
    margin: 0 0 0.5em 0;
}
.ccx-event-detail-content p:last-child {
    margin-bottom: 0;
}
.ccx-popover-link,
.ccx-popover-ics {
    margin-right: 0.75em;
    font-size: 0.9em;
}

/* Single event card */
.ccx-event-single {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 1em 0;
    background: #fff;
}
.ccx-event-single .ccx-event-image {
    line-height: 0;
}
.ccx-event-single .ccx-event-image img {
    width: 100%;
    height: auto;
    display: block;
}
.ccx-event-single .ccx-event-body {
    padding: 1em;
}
.ccx-event-single .ccx-event-title {
    margin: 0 0 0.5em 0;
    font-size: 1.25em;
}
.ccx-event-single .ccx-event-date {
    color: #666;
    margin: 0 0 0.75em 0;
}
.ccx-event-single .ccx-event-description {
    margin: 0.75em 0;
}
.ccx-event-single .ccx-event-terms {
    font-size: 0.9em;
    color: #666;
    margin: 0.5em 0;
}

/* Add to calendar buttons */
.ccx-add-to-calendar {
    margin: 1em 0;
}
.ccx-add-to-calendar-label {
    font-weight: 600;
    margin-right: 0.5em;
}
.ccx-add-to-calendar .ccx-cal-link {
    display: inline-block;
    margin: 0.25em 0.5em 0.25em 0;
    padding: 0.35em 0.75em;
    background: #f0f0f1;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    text-decoration: none;
    color: #1d2327;
    font-size: 0.9em;
}
.ccx-add-to-calendar .ccx-cal-link:hover {
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 640px) {
    .ccx-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .ccx-filter-bar select {
        width: 100%;
        max-width: 100%;
    }
    .ccx-calendar-month .ccx-month-grid {
        min-width: 280px;
    }
    .ccx-day-cell {
        min-height: 60px;
    }
    .ccx-event-pill-title {
        max-width: 100%;
    }
    .ccx-calendar-list .ccx-event-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* -------------------------------------------------------------------------- */
/* Public Calendar UI Refactor                                                */
/* -------------------------------------------------------------------------- */

.ccx-calendar-shell {
    --ccx-surface: #ffffff;
    --ccx-surface-alt: #f5f8fb;
    --ccx-bg: #edf2f7;
    --ccx-border: #d6e0ea;
    --ccx-text: #0f172a;
    --ccx-muted: #4b5563;
    --ccx-brand: #0f766e;
    --ccx-brand-strong: #115e59;
    --ccx-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--ccx-border);
    border-radius: 18px;
    padding: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.13), transparent 30%),
        radial-gradient(circle at 94% -4%, rgba(249, 115, 22, 0.15), transparent 28%),
        var(--ccx-bg);
    box-shadow: var(--ccx-shadow);
    color: var(--ccx-text);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

.ccx-calendar-shell.ccx-loading {
    opacity: 0.72;
    transition: opacity 0.16s ease;
}

.ccx-calendar-shell .ccx-public-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ccx-calendar-shell .ccx-public-eyebrow {
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    color: var(--ccx-brand-strong);
}

.ccx-calendar-shell .ccx-public-title {
    margin: 0;
    font-size: clamp(1.2rem, 1rem + 0.9vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ccx-calendar-shell .ccx-public-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ccx-calendar-shell .ccx-calendar-view-toggle {
    margin: 0;
    display: inline-flex;
    border: 1px solid #ccd7e6;
    border-radius: 999px;
    background: #fff;
    padding: 3px;
}

.ccx-calendar-shell .ccx-view-btn {
    border: 0;
    border-radius: 999px;
    margin-right: 0;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    background: transparent;
    color: #334155;
}

.ccx-calendar-shell .ccx-view-btn:hover {
    background: #f1f5f9;
}

.ccx-calendar-shell .ccx-view-btn.active {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    border-color: transparent;
}

.ccx-calendar-shell .ccx-calendar-filters {
    margin: 0 0 12px;
}

.ccx-calendar-shell .ccx-filter-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    padding: 10px;
    background: var(--ccx-surface);
    border: 1px solid var(--ccx-border);
    border-radius: 12px;
}

.ccx-calendar-shell .ccx-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.ccx-calendar-shell .ccx-filter-field > span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #334155;
}

.ccx-calendar-shell .ccx-filter-field select,
.ccx-calendar-shell .ccx-filter-field input[type="search"] {
    min-width: 0;
    width: 100%;
    border: 1px solid #c7d3e3;
    border-radius: 10px;
    min-height: 36px;
    padding: 0 10px;
    background: #fff;
    font-size: 14px;
}

.ccx-calendar-shell .ccx-filter-search-wrap {
    grid-column: span 2;
}

.ccx-calendar-shell .ccx-filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ccx-calendar-shell .ccx-filter-actions button {
    border: 1px solid #c4d0e0;
    border-radius: 10px;
    padding: 7px 10px;
    font-weight: 700;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
}

.ccx-calendar-shell .ccx-filter-actions .ccx-filter-apply {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    border-color: #0f766e;
    color: #fff;
}

.ccx-calendar-shell .ccx-filter-actions .ccx-filter-reset:hover,
.ccx-calendar-shell .ccx-filter-actions .ccx-filter-apply:hover {
    transform: translateY(-1px);
}

.ccx-calendar-shell .ccx-calendar-summary-text {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #334155;
}

.ccx-calendar-shell .ccx-calendar-list-content {
    background: var(--ccx-surface);
    border: 1px solid var(--ccx-border);
    border-radius: 14px;
    overflow: hidden;
}

.ccx-calendar-shell .ccx-events-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ccx-calendar-shell .ccx-event-item {
    border-bottom: 1px solid #e4ebf4;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    background: #fff;
}

.ccx-calendar-shell .ccx-event-item:last-child {
    border-bottom: 0;
}

.ccx-calendar-shell .ccx-event-date-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ccx-calendar-shell .ccx-event-date {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.ccx-calendar-shell .ccx-event-time {
    font-size: 12px;
    color: #64748b;
}

.ccx-calendar-shell .ccx-event-main {
    min-width: 0;
}

.ccx-calendar-shell .ccx-event-title {
    display: inline-block;
    margin: 0 0 6px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
}

.ccx-calendar-shell .ccx-event-title:hover {
    text-decoration: underline;
}

.ccx-calendar-shell .ccx-event-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ccx-calendar-shell .ccx-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #cfe3de;
    background: #f0fdfa;
    color: #0f766e;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 700;
}

.ccx-calendar-shell .ccx-event-meta {
    font-size: 12px;
    color: #475569;
}

.ccx-calendar-shell .ccx-no-events {
    margin: 0;
    padding: 14px;
    color: #64748b;
    font-style: normal;
}

.ccx-calendar-shell .ccx-month-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 10px;
    border: 1px solid var(--ccx-border);
    border-radius: 12px;
    background: var(--ccx-surface);
}

.ccx-calendar-shell .ccx-month-title {
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ccx-calendar-shell .ccx-month-actions {
    display: inline-flex;
    gap: 8px;
}

.ccx-calendar-shell .ccx-month-prev,
.ccx-calendar-shell .ccx-month-next,
.ccx-calendar-shell .ccx-month-today {
    border: 1px solid #c9d4e2;
    border-radius: 10px;
    background: #fff;
    min-height: 34px;
    padding: 0 10px;
    cursor: pointer;
    font-weight: 700;
    color: #1f2937;
}

.ccx-calendar-shell .ccx-month-today {
    background: #ecfeff;
    border-color: #99f6e4;
    color: #0f766e;
}

.ccx-calendar-shell .ccx-month-grid-wrap {
    overflow-x: auto;
}

.ccx-calendar-shell .ccx-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 1px;
    min-width: 740px;
    border: 1px solid #d5dfec;
    border-radius: 14px;
    overflow: hidden;
    background: #dce6f3;
}

.ccx-calendar-shell .ccx-month-grid-head,
.ccx-calendar-shell .ccx-month-grid-row,
.ccx-calendar-shell .ccx-month-grid-body {
    display: contents;
}

.ccx-calendar-shell .ccx-month-grid-head-cell {
    padding: 7px;
    background: #f8fbff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 11px;
    color: #475569;
    font-weight: 700;
    text-align: center;
}

.ccx-calendar-shell .ccx-day-cell {
    min-height: 112px;
    padding: 6px;
    background: #fff;
}

.ccx-calendar-shell .ccx-day-cell--empty {
    background: #f8fafc;
}

.ccx-calendar-shell .ccx-day-cell--today {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.03));
}

.ccx-calendar-shell .ccx-day-num {
    font-weight: 700;
    font-size: 12px;
    color: #1f2937;
    margin-bottom: 5px;
}

.ccx-calendar-shell .ccx-event-pills {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ccx-calendar-shell .ccx-event-pill {
    border: 0;
    border-radius: 8px;
    padding: 5px 6px;
    text-align: left;
    cursor: pointer;
    font-size: 11px;
    line-height: 1.2;
    color: #fff;
    background: #64748b;
}

.ccx-calendar-shell .ccx-event-pill:hover,
.ccx-calendar-shell .ccx-event-pill:focus {
    transform: translateY(-1px);
    outline: 1px solid #0f766e;
}

.ccx-calendar-shell .ccx-event-pill-title,
.ccx-calendar-shell .ccx-event-pill-time {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ccx-calendar-shell .ccx-event-pill-time {
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    margin-top: 2px;
}

.ccx-calendar-shell .ccx-event-pill-more {
    font-size: 11px;
    color: #475569;
    padding: 2px 4px;
}

.ccx-calendar-shell .ccx-day-events-trigger {
    width: 100%;
    min-height: 24px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.ccx-calendar-shell .ccx-mobile-day-panel {
    margin-top: 10px;
    border: 1px solid #d8e2ef;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.ccx-calendar-shell .ccx-mobile-day-panel[hidden] {
    display: none !important;
}

.ccx-calendar-shell .ccx-mobile-day-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.ccx-calendar-shell .ccx-mobile-day-title {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #334155;
}

.ccx-calendar-shell .ccx-mobile-day-close {
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    line-height: 1;
    font-size: 18px;
    color: #334155;
    cursor: pointer;
}

.ccx-calendar-shell .ccx-mobile-day-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ccx-calendar-shell .ccx-mobile-day-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.ccx-calendar-shell .ccx-mobile-day-item:last-child {
    border-bottom: 0;
}

.ccx-calendar-shell .ccx-mobile-day-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
}

.ccx-calendar-shell .ccx-mobile-day-link:hover {
    text-decoration: underline;
}

.ccx-calendar-shell .ccx-mobile-day-time {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
}

.ccx-calendar-shell .ccx-industry-default,
.ccx-calendar-shell .ccx-industry-corporate {
    background: #475569;
}

.ccx-calendar-shell .ccx-industry-retail {
    background: #1d4ed8;
}

.ccx-calendar-shell .ccx-industry-hospitality {
    background: #047857;
}

.ccx-calendar-shell .ccx-industry-supermarkets {
    background: #b45309;
}

.ccx-calendar-shell .ccx-industry-hair_beauty {
    background: #be123c;
}

.ccx-calendar-shell .ccx-industry-fitness {
    background: #0f766e;
}

.ccx-calendar-shell .ccx-event-detail-popover {
    position: absolute;
    z-index: 100;
    max-width: 320px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #d5dfea;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.ccx-calendar-shell .ccx-event-detail-popover[hidden] {
    display: none !important;
}

.ccx-calendar-shell .ccx-popover-title {
    margin: 0 0 6px;
    font-weight: 800;
    color: #0f172a;
}

.ccx-calendar-shell .ccx-popover-meta {
    margin: 0 0 6px;
    color: #475569;
    font-size: 12px;
}

.ccx-calendar-shell .ccx-popover-actions {
    margin: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ccx-calendar-shell .ccx-popover-link,
.ccx-calendar-shell .ccx-popover-ics {
    font-size: 12px;
    font-weight: 700;
    color: #0f766e;
    text-decoration: none;
}

.ccx-calendar-shell .ccx-popover-link:hover,
.ccx-calendar-shell .ccx-popover-ics:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .ccx-calendar-shell .ccx-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ccx-calendar-shell .ccx-filter-search-wrap {
        grid-column: span 2;
    }

    .ccx-calendar-shell .ccx-filter-actions {
        grid-column: span 2;
    }

    .ccx-calendar-shell .ccx-event-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 700px) {
    .ccx-calendar-shell {
        padding: 10px;
        border-radius: 14px;
    }

    .ccx-calendar-shell .ccx-public-header {
        align-items: center;
    }

    .ccx-calendar-shell .ccx-filter-row {
        grid-template-columns: 1fr;
    }

    .ccx-calendar-shell .ccx-filter-search-wrap,
    .ccx-calendar-shell .ccx-filter-actions {
        grid-column: auto;
    }

    .ccx-calendar-shell .ccx-filter-actions button {
        flex: 1;
    }

    .ccx-calendar-shell .ccx-month-header {
        grid-template-columns: auto 1fr auto;
        gap: 6px;
        padding: 8px;
    }

    .ccx-calendar-shell .ccx-month-title {
        text-align: center;
        font-size: 1rem;
    }

    .ccx-calendar-shell .ccx-month-actions {
        gap: 6px;
    }

    .ccx-calendar-shell .ccx-month-grid-wrap {
        overflow-x: visible;
    }

    .ccx-calendar-shell .ccx-month-grid {
        min-width: 0;
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .ccx-calendar-shell .ccx-month-grid-head-cell {
        padding: 4px 0;
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .ccx-calendar-shell .ccx-day-cell {
        min-height: 54px;
        padding: 3px;
    }

    .ccx-calendar-shell .ccx-day-num {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .ccx-calendar-shell .ccx-event-pills {
        gap: 2px;
    }

    .ccx-calendar-shell .ccx-event-pill {
        padding: 0;
        min-height: 7px;
        height: 7px;
        border-radius: 999px;
    }

    .ccx-calendar-shell .ccx-event-pill-title,
    .ccx-calendar-shell .ccx-event-pill-time {
        display: none;
    }

    .ccx-calendar-shell .ccx-event-pill-more {
        font-size: 9px;
        padding: 0;
    }

    .ccx-calendar-shell .ccx-mobile-day-panel {
        display: block;
    }
}
