.tools .cafe-shortcut {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  white-space: nowrap;
}
.cafe-shortcut img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.tools.schedule-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}
.schedule-tools .view-switch {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  margin: 0;
  background: #fff;
  border-color: #dce5df;
}
.schedule-tools .view-switch button {
  padding: 7px 18px;
}
.schedule-tools .view-switch button[aria-pressed="true"] {
  background: #16864e;
  color: #fff;
  box-shadow: none;
}
.schedule-tools .cafe-shortcut {
  grid-column: 3;
  grid-row: 1;
}
.journey-tools .cafe-shortcut {
  margin-left: auto;
}
@media (max-width: 700px) {
  .tools.schedule-tools {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .schedule-tools .view-switch {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .schedule-tools .cafe-shortcut {
    grid-column: 2;
    grid-row: 1;
  }
  .schedule-tools .view-switch button {
    padding: 7px 12px;
    gap: 3px;
  }
  .tools.schedule-tools .cafe-shortcut {
    gap: 4px;
    font-size: 12px;
  }
  .schedule-tools .cafe-shortcut img {
    width: 24px;
    height: 24px;
  }
  .tools.journey-tools {
    flex-wrap: wrap;
  }
  .tools .cafe-shortcut {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .tools.schedule-tools { gap: 5px; padding-inline: 8px; }
  .schedule-tools .view-switch button { padding: 7px 8px; font-size: 11px; }
  .schedule-tools .view-switch button svg { width: 14px; height: 14px; }
  .tools.schedule-tools .cafe-shortcut { font-size: 11px; gap: 2px; }
  .schedule-tools .cafe-shortcut img { width: 20px; height: 20px; }
}
