/* Location Events Manager – front-end schedule styles */

.lem-schedule {
  max-width: 980px;
  margin: 0 auto;
}

.lem-day {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 22px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.lem-day-header {
  padding: 18px 22px;
  text-align: center;
}

.lem-day-title {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.lem-day-body {
  background: #f7f7f7;
}

.lem-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.lem-row:first-child {
  border-top: none;
}

.lem-event-title {
  font-size: 18px;
  font-weight: 700;
  color: #444;
}

.lem-event-time {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .lem-day-title {
    font-size: 22px;
  }
  .lem-event-title {
    font-size: 16px;
  }
  .lem-row {
    padding: 14px 16px;
  }
}
