.cc-calendar-wrapper {
    font-family: "Figtree", sans-serif;
    color: #13100D; /* Updated to Tertiary Dark */
    max-width: 1200px;
    margin: 0 auto;
}

.cc-year-title {
    font-family: "Figtree", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #13100D; /* Updated to Tertiary Dark */
    margin: 40px 0 10px 0;
}

.cc-month-title {
    font-family: "Figtree", sans-serif;
    font-size: 28px; 
    font-weight: 700;
    margin: 15px 0 15px 0; 
    color: #13100D; /* Updated to Tertiary Dark */
}

.cc-event-table {
    background-color: #f8fafc;
    border-radius: 4px;
    overflow: hidden;
}

.cc-table-header {
    display: flex;
    background-color: #104692; /* Updated to Primary Blue */
    color: #FFFFFF; /* Secondary White */
    padding: 16px 20px;
    font-weight: 600;
    font-size: 18px; 
}

.cc-table-body {
    display: flex;
    flex-direction: column;
}

.cc-event-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.cc-event-row:last-child {
    border-bottom: none;
}

.cc-col-dates {
    width: 350px; 
    flex-shrink: 0;
}

.cc-col-event {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cc-date-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc-badge {
    background-color: #104692; /* Updated to Primary Blue */
    color: #FFFFFF; /* Secondary White */
    border-radius: 6px;
    width: 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cc-badge .cc-day {
    font-size: 14px; 
    font-weight: 700; 
    padding: 4px 0;
    background-color: rgba(19, 16, 13, 0.15); /* Slightly darkened overlay using your tertiary hue */
    border-bottom: 1px solid rgba(19, 16, 13, 0.1); 
    text-transform: capitalize;
}

.cc-badge .cc-date {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
}

.cc-event-title {
    font-size: 20px; 
    color: #13100D; /* Updated to Tertiary Dark */
    margin-bottom: 8px;
    line-height: 1.4;
}

.cc-event-btn {
    background-color: #13100D; /* Updated to Tertiary Dark for high contrast */
    color: #FFFFFF; /* Secondary White */
    font-size: 16px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.cc-event-btn:hover {
    background-color: #104692; /* Hover changes to Primary Blue */
    color: #FFFFFF; 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cc-table-header {
        display: none; 
    }
    .cc-event-row {
        flex-direction: column;
    }
    .cc-col-dates {
        width: 100%;
        margin-bottom: 15px;
    }
}