.day-tile {
  background: #0b0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.day-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.day-head-main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.day-icon {
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #08386f; color: #1488ff; font-size: 10px; font-weight: 700;
}
.day-title {
  margin: 0; color: #f3f5fb;
  font-size: 11px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700;
}
.day-summary-chip {
  border-radius: 999px;
  background: #0d3f76;
  color: #9db6d7;
  padding: 8px 14px;
  font-size: 9px; font-weight: 600;
  white-space: nowrap;
}
.day-divider { height: 1px; background: rgba(255, 255, 255, 0.09); margin: 12px 0; }
.day-events { display: flex; flex-direction: column; gap: 12px; }

.trip-event-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  background: #151821;
}
.flight-card { background: #171922; }
.hotel-card { background: linear-gradient(180deg, #4b4523 0%, #474222 100%); }
.layover-card { background: #2b2d37; }

.event-card-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-bottom: 10px;
}
.event-kicker {
  color: #aaafbf; font-size: 7px; font-weight: 800; letter-spacing: 0.12em;
}
.event-title {
  color: #a8acbb; font-size: 12px; font-weight: 600; text-align: right;
}

.event-card-actions {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.evt-pill-btn,
.evt-icon-btn {
  min-height: 42px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08); color: #b3b8c5;
  font: inherit; font-weight: 700; cursor: pointer;
}
.evt-pill-btn { padding: 0 18px; font-size: 10px; }
.evt-pill-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.evt-icon-btn { width: 56px; font-size: 12px; }

.route-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-bottom: 10px; }
.route-side { min-width: 0; }
.align-right { text-align: right; }
.route-code { color: #eef1f9; font-size: 23px; font-weight: 800; line-height: 1.03; }
.hotel-label { font-size: 11px; font-weight: 700; }
.route-time { color: #a7acbd; font-size: 11px; font-weight: 600; }
.route-center { color: #1488ff; font-size: 18px; font-weight: 700; text-align: center; padding: 0 10px; }

.event-passengers { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.passenger-label { color: #aeb2bf; font-size: 10px; font-weight: 700; }
.passenger-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.passenger-chip {
  border-radius: 999px; background: #0d3f76; color: #96b0d3;
  padding: 6px 14px; font-size: 10px; font-weight: 700;
}
.hotel-meta { color: #bec1c9; font-size: 10px; font-weight: 700; }
.layover-icon { color: #c8cbd4; font-size: 14px; line-height: 1; }
.layover-text { color: #adb1bf; font-size: 11px; font-weight: 700; }

@media (max-width: 899px) {
  .day-title { font-size: 9px; }
  .day-summary-chip { font-size: 7px; }
  .event-title { font-size: 9px; }
  .evt-pill-btn { min-height: 34px; font-size: 7px; padding: 0 14px; }
  .evt-icon-btn { min-height: 34px; width: 46px; font-size: 9px; }
  .route-code { font-size: 20px; }
  .hotel-label { font-size: 8px; }
  .route-time { font-size: 9px; }
  .route-center { font-size: 15px; }
  .passenger-label, .hotel-meta, .layover-text { font-size: 8px; }
  .passenger-chip { font-size: 8px; padding: 5px 11px; }
}
