.day-divider {
  margin: 60px 0;
  text-align: center;
  position: relative;

  margin: 60px 60px 60px 0px;
}

.day-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e0e0e0 20%,
    #bdbdbd 50%,
    #e0e0e0 80%,
    transparent 100%
  );
  z-index: 1;
}

.day-content {
  background: white;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border: 1px solid #f0f0f0;
}

.day-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  color: #6c757d;
  border: 2px solid #f0f2f5;
}

.day-text h2 {
  color: #2c3e50;
  font-size: 1.8em;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.day-text p {
  color: #2c3e50;
  font-size: 0.95em;
  margin: 0;
  font-weight: bold;
}
