:root {
    --primary: #e5e5e5;
    --primary-light: #e5e5e5;
    --bg: #e5e5e5;
    --bg-light: #e5e5e5;
    --bg-card: #ffffff;
    --text-primary: #2d3436;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #d4c9b8;
    --border-light: #e8e0d3;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Import Roboto from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.agenda-embed {
    width: 100%;
    max-width: 100%;
    background: var(--bg);
    border-radius: 0;
    overflow: hidden;
}

/* Days Grid - Card Layout */
.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 24px;
}

/* Day Card */
.day-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.day-card:hover {
    border-color: var(--border);
}

.day-card-header {
    background: #006bb6;
    color: white;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-title {
    font-size: 20px; /* Increased */
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.day-date {
    font-size: 20px; /* Increased */
    font-weight: 500;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    flex: 1;
}

.event-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 0;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    align-items: flex-start;
}

.event-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 124, 139, 0.12);
    color: var(--primary);
    border-radius: 0;
    font-size: 18px;
}

.event-item:hover {
    background: var(--bg-card);
    border-color: var(--border);
}

.event-time {
    min-width: 85px;
    font-weight: 700;
    font-size: 15px; /* Increased */
    color: var(--text-primary);
    padding: 8px 12px;
    background: white;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    line-height: 1.4;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.event-title {
    font-size: 18px; /* Increased */
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.event-description {
    font-size: 15px; /* Increased */
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.event-time-range {
    font-size: 15px; /* Increased */
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.5;
}

/* Footer */
.agenda-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
    text-align: center;
}

.disclaimer {
    font-size: 13px; /* Increased */
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Print Styles */
@media print {
    .agenda-footer {
        display: none;
    }
    
    .day-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
