.argos-weather-timeline {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.90)
    );
  color: #e5e7eb;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.awt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
}

.awt-title {
  font-size: 16px;
  font-weight: 800;
  color: #f8fafc;
}

.awt-subtitle {
  margin-top: 3px;
  font-size: 11px;
  color: #94a3b8;
}

.awt-current-time {
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  white-space: nowrap;
}

.awt-chart {
  position: relative;
  min-height: 150px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.awt-chart::-webkit-scrollbar {
  display: none;
}

.awt-empty {
  display: flex;
  min-height: 145px;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 12px;
}

.awt-canvas {
  display: block;
  width: 100%;
  min-width: 0;
  height: 165px;
}

@media (max-width: 760px) {
  .argos-weather-timeline {
    padding: 10px;
    border-radius: 12px;
  }

  .awt-current-time {
    font-size: 15px;
  }

  .awt-chart {
    min-height: 135px;
  }

  .awt-canvas {
    height: 150px;
  }
}

/* ARGOS_WEATHER_TIMELINE_COMPACT_HEADER_V1 */

.awt-header {
  align-items: flex-start;
  margin-bottom: 2px;
}

.awt-subtitle {
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.awt-meta-separator {
  color: rgba(148, 163, 184, 0.65);
}

.awt-chart {
  min-height: 150px;
}

.awt-canvas {
  height: 165px;
}
