﻿body 
{
/* Schedule Section Styles */
.schedule-section {
  padding: 60px 0;
  background: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

/* Day Navigation */
.day-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.day-btn {
  padding: 12px 25px;
  background: #ecf0f1;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #34495e;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-btn span {
  font-size: 0.8rem;
  font-weight: normal;
  margin-top: 3px;
}

.day-btn.active {
  background: #e74c3c;
  color: white;
}

/* Schedule Content */
.schedule-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.day-schedule {
  display: none;
}

.day-schedule.active {
  display: block;
}

.time-slot {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #ecf0f1;
}

.time-slot:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.time {
  width: 120px;
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.1rem;
}

.event {
  flex: 1;
}

.event h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.event p {
  color: #7f8c8d;
  margin-bottom: 10px;
}

.location {
  display: flex;
  align-items: center;
  color: #3498db;
  font-size: 0.9rem;
}

.location i {
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .day-navigation {
    flex-direction: column;
    align-items: center;
  }
  
  .time-slot {
    flex-direction: column;
  }
  
  .time {
    width: 100%;
    margin-bottom: 10px;
  }
}
}
