/* Parent Container */
.agenda-container {
    margin: 30px 0;
    width: 100%;
}

/* Accordion with Rounded Corners */
.agenda-day {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 12px; /* Rounds the entire day block */
    overflow: hidden; /* Important to keep the dark header rounded */
}

/* Dark Gray Header */
.agenda-day-header {
    background: #333;
    color: #fff;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
}

/* Remove default arrow and add custom one */
.agenda-day-header::-webkit-details-marker { display: none; }
.agenda-day-header::before {
    content: '';
    width: 0; height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #fff;
    margin-right: 15px;
    transition: transform 0.2s ease;
}
details[open] .agenda-day-header::before {
    transform: rotate(-180deg);
}

/* Session Entry Row */
.session-row {
    display: flex;
    padding: 35px 25px;
    background: #fff;
}

/* Line between sessions */
.session-row:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* New Left Column: Time and Type */
.session-time-col {
    flex: 0 0 200px; /* Fixed width for the time/type column */
    padding-right: 20px;
}

.session-time {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    line-height: 1.2;
}

.session-type-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-top: 8px; /* Space between time and type */
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* New Right Column: Main Content */
.session-body-col {
    flex: 1;
}

.session-title {
    margin: 0 0 10px 0 !important;
    font-size: 22px;
    line-height: 1.2;
}

/* Speaker Styling */
.session-speaker {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Category Tag */
.session-badge {
    display: inline-block;
    background: gray;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* Description Text */
.session-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Button Styling */
.session-actions {
    margin-top: 25px;
}

.session-button {
    display: inline-block;
    background-color: #009C62 !important; /* Green base */
    color: #ffffff !important;
    padding: 10px 32px;
    border-radius: 50px; /* Pill shaped */
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.session-button:hover {
    background-color: #008754 !important; /* Darker green hover */
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .session-row { 
        flex-direction: column; 
    }
    .session-time-col { 
        flex: 0 0 auto; 
        margin-bottom: 15px; 
        padding-right: 0;
    }
    .agenda-day-header { 
        font-size: 1rem; 
    }
}