.cc-d3ec15d0-container {
    width: 100%;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.cc-d3ec15d0-header {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.cc-d3ec15d0-switcher {
    display: inline-flex;
    padding: 5px;
    border-radius: 30px;
    background-color: #f5f6f7;
    gap: 5px;
}
.cc-d3ec15d0-btn {
    border: none;
    outline: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    color: #555;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cc-d3ec15d0-btn:hover {
    color: #333;
}
.cc-d3ec15d0-btn.active {
    background-color: #111111;
    color: #ffffff;
}

/* Agenda View Card Design */
.cc-d3ec15d0-date-divider {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0 12px;
    border-bottom: 1px solid #eef2f5;
    padding-bottom: 8px;
}
.cc-d3ec15d0-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cc-d3ec15d0-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.cc-d3ec15d0-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.cc-d3ec15d0-time {
    font-size: 13px;
    font-weight: 600;
    color: #7f8c8d;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cc-d3ec15d0-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}
.cc-d3ec15d0-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #2c3e50;
}
.cc-d3ec15d0-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Timeline View Design */
.cc-d3ec15d0-timeline-view {
    position: relative;
    padding: 20px 0;
}
.cc-d3ec15d0-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e2e8f0;
    transform: translateX(-50%);
}
.cc-d3ec15d0-tl-item {
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}
.cc-d3ec15d0-tl-left {
    left: 0;
    padding-right: 35px;
}
.cc-d3ec15d0-tl-right {
    left: 50%;
    padding-left: 35px;
}
.cc-d3ec15d0-tl-badge {
    position: absolute;
    top: 24px;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    z-index: 2;
}
.cc-d3ec15d0-tl-left .cc-d3ec15d0-tl-badge {
    right: -7px;
}
.cc-d3ec15d0-tl-right .cc-d3ec15d0-tl-badge {
    left: -7px;
}

/* ======================================================== */
/* DETAILED BRUTALIST SCHEDULE VIEW (IMAGE ALIGNMENT)       */
/* ======================================================== */
.cc-d3ec15d0-detailed-view {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start; /* CRITICAL: Required for position: sticky to work inside a grid container */
}

/* Sticky Sidebar Styling */
.cc-d3ec15d0-detailed-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 40px;
    align-self: start;
    z-index: 100;
}
body.admin-bar .cc-d3ec15d0-detailed-sidebar {
    top: calc(40px + var(--wp-admin--admin-bar--height, 32px));
}

.cc-d3ec15d0-sidebar-dates {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.cc-d3ec15d0-sidebar-date-btn {
    border: 1px solid #111111;
    background: #ffffff;
    color: #111111;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s, color 0.2s;
}
.cc-d3ec15d0-sidebar-date-btn.active {
    background-color: #7b68ee;
    color: #ffffff;
    border-color: #7b68ee;
}
.cc-d3ec15d0-sidebar-text {
    font-size: 110px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #111111;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    line-height: 1;
    opacity: 0.15;
    user-select: none;
    align-self: center;
    margin-top: 20px;
}

/* Header Row inside detailed content */
.cc-d3ec15d0-detailed-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #111111;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.cc-d3ec15d0-day-title {
    font-size: 36px;
    font-weight: 900;
    color: #111111;
}
.cc-d3ec15d0-day-hours {
    font-size: 36px;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1px #111111;
    letter-spacing: 1px;
}

/* Timeline Layout */
.cc-d3ec15d0-detailed-timeline-wrap {
    position: relative;
    padding-left: 80px;
}
.cc-d3ec15d0-detailed-axis-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #111111;
}
.cc-d3ec15d0-detailed-item {
    position: relative;
    margin-bottom: 40px;
}

/* Axis Marker */
.cc-d3ec15d0-axis-marker-label {
    position: absolute;
    left: -80px;
    top: 0;
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    background: #ffffff;
    padding: 2px 5px;
    z-index: 2;
}

/* Brutalist card structure */
.cc-d3ec15d0-detailed-card {
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cc-d3ec15d0-detailed-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px 0px #111111;
}
.cc-d3ec15d0-detailed-card-inner {
    padding: 25px 30px;
}
.cc-d3ec15d0-detailed-time-range {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    display: block;
    margin-bottom: 8px;
}
.cc-d3ec15d0-detailed-title {
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    color: #111111;
}
.cc-d3ec15d0-detailed-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}
.cc-d3ec15d0-detailed-desc p {
    margin-top: 0;
    margin-bottom: 10px;
}
.cc-d3ec15d0-detailed-desc p:last-child {
    margin-bottom: 0;
}

/* Card footer banner */
.cc-d3ec15d0-detailed-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-top: 1px solid #111111;
}
.cc-d3ec15d0-footer-col {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    border-right: 1px solid #111111;
}
.cc-d3ec15d0-footer-col:last-child {
    border-right: none;
}
.cc-d3ec15d0-speaker-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #111111;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cc-d3ec15d0-detailed-view {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cc-d3ec15d0-detailed-sidebar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: static;
        margin-bottom: 0;
    }
    .cc-d3ec15d0-sidebar-dates {
        flex-direction: row;
        margin-bottom: 0;
    }
    .cc-d3ec15d0-sidebar-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .cc-d3ec15d0-detailed-timeline-wrap {
        padding-left: 60px;
    }
    .cc-d3ec15d0-axis-marker-label {
        left: -60px;
    }
    .cc-d3ec15d0-detailed-footer {
        grid-template-columns: 1fr;
    }
    .cc-d3ec15d0-footer-col {
        border-right: none;
        border-bottom: 1px solid #111111;
    }
    .cc-d3ec15d0-footer-col:last-child {
        border-bottom: none;
    }
    .cc-d3ec15d0-day-title, .cc-d3ec15d0-day-hours {
        font-size: 24px;
    }
}
