.hvs-slusedata__charts {
  margin-top: 24px;
  border-top: 1px solid #dbe5ec;
  padding-top: 18px;
}

.hvs-slusedata__charts-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hvs-slusedata__charts-head h4 {
  margin: 0;
}

.hvs-slusedata__range-toggle {
  display: inline-flex;
  gap: 6px;
}

.hvs-range-btn,
.hvs-slusedata__refresh {
  border: 1px solid #b7c9d6;
  background: #fff;
  color: #24485e;
  border-radius: 16px;
  padding: 2px 9px;
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
}

.hvs-slusedata__refresh:disabled {
  opacity: 0.6;
  cursor: wait;
}

.hvs-range-btn.is-active {
  background: #1e6ea2;
  border-color: #1e6ea2;
  color: #fff;
}

.hvs-slusedata__chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hvs-chart-card {
  border: 1px solid #dbe5ec;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
}

.hvs-chart-card h5 {
  margin: 0 0 8px;
  font-size: 13px;
}

.hvs-chart-wrap {
  position: relative;
  height: 220px;
}

.hvs-timeline-card {
  padding-bottom: 6px;
}

.hvs-event-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.hvs-event-item {
  border: 1px solid #e3ecf2;
  border-radius: 6px;
  padding: 6px 8px;
  display: grid;
  gap: 2px;
}

.hvs-event-time {
  font-size: 12px;
  color: #24485e;
}

.hvs-event-text {
  font-size: 13px;
}

@media (max-width: 900px) {
  .hvs-slusedata__chart-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hvs-slusedata__charts-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hvs-chart-wrap {
    height: 200px;
  }

  .hvs-range-btn,
  .hvs-slusedata__refresh {
    font-size: 11px;
    padding: 2px 8px;
  }

  .hvs-slusedata__refresh {
    width: auto;
    align-self: flex-start;
  }
}

.hvs-slusedata__charts-updated {
  margin: 0 0 14px;
  font-size: 13px;
  color: #3f5669;
}