.information-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
}

.information-box {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  padding: 16px;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 15px;
  color: #18181B;
  letter-spacing: -0.01em;
}

.information-box h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
  padding: 0;
  color: #71717A;
}

html.dark .information-box {
  background: #18181B;
  border-color: #27272A;
  color: #FAFAFA;
}

html.dark .information-box h4 {
  color: #A1A1AA;
}

.form-select-period-of-time {
  width: auto;
}

.chart-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chart-container .chart {
  width: 545px;
  margin: 20px 0 20px 0;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 4px rgb(157 161 164 / 19%);
}

.chart .chart-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
}

.chart .chart-header h3 {
  font-size: 18px;
  color: #000000;
  margin: 0;
}

.chart .chart-content {
  padding: 15px;
}

.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: #18181B;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

html.dark .chart-title {
  color: #FAFAFA;
}


.ip-address-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 8px;
}

.ip-address-header h3 {
  margin: 0;
  line-height: 22px;
}

.ip-tabs-list {
  display: inline-flex;
  height: 22px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  background-color: #F4F4F5;
  padding: 2px;
  width: fit-content;
}

.ip-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: #71717A;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ip-tab:hover {
  color: #18181B;
}

.ip-tab.active {
  background: #ffffff;
  color: #18181B;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ip-tab:focus-visible {
  outline: 2px solid #18181B;
  outline-offset: 2px;
}

.ip-tab-content {
  display: none;
}

.ip-tab-content.active {
  display: block;
}

html.dark .ip-tabs-list {
  background-color: #27272A;
}

html.dark .ip-tab {
  color: #A1A1AA;
}

html.dark .ip-tab:hover {
  color: #FAFAFA;
}

html.dark .ip-tab.active {
  background: #3F3F46;
  color: #FAFAFA;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

html.dark .ip-tab:focus-visible {
  outline-color: #FAFAFA;
}

html.dark .apexcharts-svg {
  background: #18181B;
}

html.dark .apexcharts-canvas svg {
  background: #18181B;
}