.schedule-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.schedule-table th, 
.schedule-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

.schedule-table th {
  background-color: #2650AE;
  color: white;
  font-weight: bold;
}

.schedule-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.schedule-table tr:hover {
  background-color: #e6e6e6;
}

.time-bubble {
  background: #2650AE;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  min-width: 60px;
  display: inline-block;
  margin: 2px;
}

.schedule-container {
  font-family: 'Arial', sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.update-notice {
  color: #333;
  text-align: center;
  margin-bottom: 25px;
}

.red-text {
  color: #ff0000;
  font-weight: bold;
}

.route-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.route-header {
  text-align: center;
  margin-bottom: 20px;
}

.route-header h2 {
  color: #2650AE;
  margin: 0;
}

.route-description {
  color: #666;
  margin-top: 5px;
}

.day-type-card {
  background: white;
  border-radius: 8px;
  border-left: 4px solid #F35303;
  padding: 15px;
  margin-bottom: 20px;
}

.day-type-card.weekend {
  border-left: 4px solid #2650AE;
}

.day-type-title {
  color: #2650AE;
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.departure-point {
  margin-bottom: 15px;
}

.departure-point h4 {
  margin: 10px 0;
  color: #444;
}

.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-bubble {
  background: #2650AE;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  min-width: 60px;
}

.discount {
  background: #FFD700;
  color: #333;
}

.special-route {
  background: #1A3A7A;
}

.notice-box {
  background: #ffecec;
  border-left: 4px solid #ff0000;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
  overflow: visible;
}

.discount-notice {
  background: #FFF9C4;
  border-left: 4px solid #FFD700;
}

.discount-notice p {
  color: #333;
  font-style: normal;
  font-weight: bold;
  margin: 5px 0;
  line-height: 1.5;
}

/* Аккордеон */
.accordion {
  margin: 20px 0;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-toggle {
  display: none;
}

.accordion-title {
  display: block;
  background: #2650AE;
  color: white;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.accordion-title:hover {
  background: #1A3A7A;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-toggle:checked ~ .accordion-content {
  max-height: none;
}

.accordion-toggle:checked + .accordion-title {
  background: #1A3A7A;
}
.dispatcher-phone {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.dispatcher-phone a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}