/* /css/style.css */

.schedule-heading { text-align: center; font-size: 32px; margin-bottom: 20px; font-weight: 600; }
.schedule-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; align-items: center; }
.schedule-filters select, .schedule-filters button { padding: 10px 16px; border-radius: 6px; border: 1px solid #ccc; background-color: #fff; font-size: 16px; cursor: pointer; }
.schedule-filters button { background-color: #555; color: #fff; border-color: #555; }
.schedule-filters button:hover { background-color: #333; }
.schedule-list { max-width: 800px; margin: 0 auto; }
.schedule-item { border: 1px solid #eee; padding: 16px 20px; border-radius: 8px; margin-bottom: 12px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.07); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.schedule-item:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* Card Layout Styles */
.schedule-item .item-line { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 12px; }
.schedule-item .item-details p { margin: 4px 0 8px; padding-left: 12px; border-left: 3px solid #eee; }
.schedule-item .item-details p strong { color: #333; }
.schedule-item .item-details { display: flex; justify-content: space-between;}

.item-day { background-color: #f2f2f2; padding: 3px 8px; border-radius: 4px; font-size: 13px; font-weight: 600; }
.item-location a { text-decoration: none; color: #0056b3; }
.item-location a:hover { text-decoration: underline; }
.item-address { font-size: 14px; color: #666; white-space: pre-wrap; }
.item-time { font-size: 15px; }
.item-age { background-color: #e8f0fe; color: #1a73e8; padding: 3px 8px; border-radius: 4px; font-size: 13px; font-weight: 600; text-transform: capitalize; }
.no-results-message { text-align: center; padding: 20px; color: #777; }