/**
 * Weather Monitor CSS
 * Styles for the weather monitoring feature
 */

/* Weather icon container - Apple Maps style */
.weather-monitor {
  position: absolute;
  z-index: 1000;
  bottom: 25px;
  right: 10px;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: 12px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  min-width: 70px;
  height: 36px;
}

/* Light mode styles for weather icon */
.weather-monitor.light-mode {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

/* Dark mode is default now */
html:not(.dark-mode) .weather-monitor.auto-mode {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

html.dark-mode .weather-monitor.auto-mode {
  background-color: rgba(30, 30, 30, 0.8);
  color: white;
}

/* Weather icon hover effect */
.weather-monitor:hover {
  transform: scale(1.03);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Weather icon */
.weather-monitor i {
  font-size: 18px;
  margin-right: 6px;
}

/* Weather temperature text */
.weather-monitor-temp {
  font-size: 16px;
  font-weight: 500;
}

/* Weather popup container - Apple Weather style */
.weather-popup {
  position: absolute;
  z-index: 1001;
  bottom: 70px;
  right: 10px;
  width: 320px;
  background-color: rgba(0, 122, 255, 0.85);
  background: linear-gradient(to bottom, rgba(0, 122, 255, 0.9), rgba(10, 132, 255, 0.9));
  color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeIn 0.3s cubic-bezier(0.2, 0, 0, 1);
  max-height: 600px;
  overflow-y: auto;
  /* 隐藏滚动条但保留功能 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* 确保Mac双指滚动正常工作 */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  /* 防止事件传播到地图 */
  pointer-events: auto;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 隐藏Webkit浏览器的滚动条 */
.weather-popup::-webkit-scrollbar {
  display: none;
}

/* Dark mode styles for weather popup */
.dark-mode .weather-popup {
  background: linear-gradient(to bottom, rgba(28, 28, 30, 0.9), rgba(44, 44, 46, 0.9));
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Weather popup header - Apple Weather style */
.weather-popup-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.weather-popup-title {
  font-weight: 500;
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.5px;
  text-align: center;
}

.weather-popup-subtitle {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
  text-align: center;
}

.weather-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10;
}

.weather-popup-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.weather-popup-close:active {
  transform: scale(0.95);
}

.dark-mode .weather-popup-close {
  background: rgba(60, 60, 67, 0.3);
  color: white;
}

.dark-mode .weather-popup-close:hover {
  background-color: rgba(60, 60, 67, 0.4);
}

/* Weather current conditions - Apple Weather style */
.weather-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.weather-temp-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.weather-high-low {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.weather-high-low span {
  margin: 0 5px;
}

.weather-icon {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-icon i {
  font-size: 70px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.dark-mode .weather-icon i {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.weather-temp {
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
}

.weather-desc {
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}

.weather-location {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.8;
}

/* Weather details - Apple Weather style */
.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.weather-details:hover {
  transform: translateY(-2px);
}

.dark-mode .weather-details {
  background-color: rgba(30, 30, 30, 0.2);
}

/* 在所有屏幕尺寸下都使用两列布局 */
.weather-details {
  grid-template-columns: 1fr 1fr;
}

.weather-detail-item {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.weather-detail-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark-mode .weather-detail-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.weather-detail-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-detail-label i {
  margin-right: 6px;
  font-size: 18px;
}

.dark-mode .weather-detail-label {
  color: rgba(255, 255, 255, 0.7);
}

.weather-detail-value {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: white;
  text-align: center;
}

/* Weather forecast - Hourly */
.weather-forecast-hourly {
  display: flex;
  overflow-x: auto;
  padding: 15px;
  margin-bottom: 20px;
  /* 隐藏滚动条但保留功能 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* 添加平滑滚动效果 */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* 防止触摸事件传播 */
  touch-action: pan-x;
  /* 确保Mac双指滚动正常工作 */
  cursor: grab;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.weather-forecast-hourly:active {
  cursor: grabbing;
}

/* 隐藏Webkit浏览器的滚动条 */
.weather-forecast-hourly::-webkit-scrollbar {
  display: none;
}

/* 确保天气弹窗内的所有可滚动元素不会影响地图 */
.weather-popup * {
  touch-action: pan-x pan-y;
}

.dark-mode .weather-forecast-hourly {
  background-color: rgba(30, 30, 30, 0.2);
}

.weather-forecast-item {
  flex: 0 0 auto;
  width: 70px;
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  margin: 0 4px;
  position: relative;
}

.weather-forecast-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* 高亮当前选中的时间点 */
.weather-forecast-item.current-forecast {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.weather-forecast-item.current-forecast:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .weather-forecast-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .weather-forecast-item.current-forecast {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.dark-mode .weather-forecast-item.current-forecast:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.weather-forecast-time {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  font-weight: 500;
}

.weather-forecast-icon {
  margin-bottom: 10px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-forecast-icon i {
  font-size: 26px;
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.weather-forecast-temp {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Weather forecast - Daily */
.weather-forecast-daily {
  display: flex;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 15px 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* 隐藏滚动条但保留功能 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* 添加平滑滚动效果 */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* 防止触摸事件传播 */
  touch-action: pan-x;
  /* 确保Mac双指滚动正常工作 */
  cursor: grab;
}

.weather-forecast-daily:active {
  cursor: grabbing;
}

/* 隐藏Webkit浏览器的滚动条 */
.weather-forecast-daily::-webkit-scrollbar {
  display: none;
}

.dark-mode .weather-forecast-daily {
  background-color: rgba(30, 30, 30, 0.2);
}

.weather-forecast-daily-col {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  text-align: center;
  min-width: 90px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: background-color 0.2s ease;
  white-space: normal;
}

.weather-forecast-daily-col:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 竖排显示其他天 */
.weather-forecast-daily-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.weather-forecast-daily-item:last-child {
  border-bottom: none;
}

.weather-forecast-daily-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .weather-forecast-daily-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.weather-forecast-day {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  flex: 1;
}

.weather-forecast-daily-icon {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  position: relative;
}

/* 横排布局中的图标 */
.weather-forecast-daily-col .weather-forecast-daily-icon {
  margin: 10px 0;
  min-height: 50px;
}

.weather-forecast-daily-icon i {
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}

/* 横排布局中的图标 */
.weather-forecast-daily-col .weather-forecast-daily-icon i {
  font-size: 32px;
}

.weather-forecast-precip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.weather-forecast-temp-range {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

/* 横排布局中的温度范围 */
.weather-forecast-daily-col .weather-forecast-temp-range {
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

.weather-forecast-temp-bar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 10px;
  position: relative;
  overflow: visible;
}

/* 横排布局中的温度条 */
.weather-forecast-daily-col .weather-forecast-temp-bar {
  width: 4px;
  height: 80px;
  margin: 10px 0;
}

.weather-forecast-temp-bar-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(to right, #4dabf7, #ffd43b, #ff6b6b);
  border-radius: 2px;
  top: 0;
}

/* 横排布局中的温度条填充 */
.weather-forecast-daily-col .weather-forecast-temp-bar-fill {
  width: 100%;
  height: auto;
  background: linear-gradient(to top, #4dabf7, #ffd43b, #ff6b6b);
  bottom: 0;
  top: auto;
}

.weather-forecast-temp-low {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  width: 35px;
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}

.weather-forecast-temp-high {
  font-size: 16px;
  font-weight: 500;
  width: 35px;
  color: white;
}

/* 横排布局中的温度值 */
.weather-forecast-daily-col .weather-forecast-temp-low,
.weather-forecast-daily-col .weather-forecast-temp-high {
  width: auto;
  text-align: center;
  margin: 5px 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .weather-monitor {
    bottom: 120px; /* 将位置进一步往上移，远离抽屉 */
    right: 10px;
    height: 32px;
    padding: 4px 10px;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .weather-monitor i {
    font-size: 16px;
    margin-right: 4px;
  }

  .weather-monitor-temp {
    font-size: 14px;
  }

  .weather-popup {
    bottom: 155px; /* 相应调整弹窗位置 */
    right: 10px;
    width: calc(100% - 20px);
    max-width: 320px;
    max-height: 70vh; /* 降低最大高度，防止超出屏幕 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px; /* 减小内边距 */
    top: auto !important; /* 确保不使用top定位 */
    transform-origin: bottom right; /* 设置变换原点为右下角 */
  }

  /* 移动设备上更紧凑的样式 */
  .weather-popup-header.mobile-compact {
    margin-bottom: 10px;
  }

  .weather-popup-title.mobile-compact {
    font-size: 20px;
  }

  .weather-current.mobile-compact {
    margin-bottom: 10px;
  }

  .weather-popup-title {
    font-size: 22px;
  }

  .weather-temp {
    font-size: 50px;
  }

  .weather-icon {
    width: 60px;
    height: 60px;
  }

  .weather-icon i {
    font-size: 50px;
  }

  .weather-forecast-hourly {
    padding: 12px 10px;
  }

  .weather-forecast-item {
    width: 58px;
    padding: 8px 5px;
  }

  .weather-forecast-daily-item {
    padding: 12px 10px;
  }

  /* 优化天气详情区域 */
  .weather-details {
    gap: 8px;
    margin-bottom: 15px;
    padding: 12px;
  }

  .weather-detail-item {
    padding: 8px;
  }

  /* 优化天气预报区域 */
  .weather-forecast-section {
    margin-bottom: 15px;
  }

  .weather-forecast-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .weather-forecast-temp-bar {
    width: 60px;
  }

  /* 横排布局中的温度条 */
  .weather-forecast-daily-col .weather-forecast-temp-bar {
    height: 60px;
  }

  /* 横排布局调整 */
  .weather-forecast-daily {
    padding: 12px 5px;
  }

  .weather-forecast-daily-col {
    padding: 10px 5px;
    min-width: 80px;
    margin: 0 3px;
  }

  .weather-forecast-daily-col .weather-forecast-daily-icon i {
    font-size: 26px;
  }

  .weather-forecast-day {
    font-size: 14px;
  }

  .weather-current, .weather-astro-container {
    padding: 10px;
  }

  .weather-details {
    padding: 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .weather-detail-item {
    padding: 8px 5px;
    aspect-ratio: 1/1;
    border-radius: 12px;
  }

  .weather-detail-label {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .weather-detail-label i {
    font-size: 14px;
  }

  .weather-detail-value {
    font-size: 16px;
  }

  .weather-astro {
    margin-bottom: 15px;
  }

  .weather-astro-container {
    gap: 8px;
  }

  .weather-astro-item {
    padding: 8px 5px;
    aspect-ratio: 1/1;
    border-radius: 12px;
  }

  .weather-astro-label {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .weather-astro-label i {
    font-size: 14px;
  }

  .weather-astro-value {
    font-size: 16px;
  }

  /* 移动端云层分布样式 */
  .weather-cloud-profile {
    padding: 10px;
    gap: 10px;
  }

  .weather-cloud-profile-label {
    width: 90px;
    font-size: 12px;
  }

  .weather-cloud-profile-value {
    width: 60px;
    font-size: 12px;
  }
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Loading indicator */
.weather-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  flex-direction: column;
}

.weather-loading i {
  animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.weather-loading::after {
  content: "加载中...";
  font-size: 14px;
  color: #666;
  font-weight: 500;
  opacity: 0.8;
}

.dark-mode .weather-loading i {
  color: #5b9aff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.dark-mode .weather-loading::after {
  color: #bbb;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error message */
.weather-error {
  padding: 20px;
  text-align: center;
  color: #dc3545;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.weather-error i {
  font-size: 32px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.weather-error p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.dark-mode .weather-error {
  color: #ff6b6b;
}

.dark-mode .weather-error i {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* Astronomical information - Apple Weather style */
.weather-astro {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.weather-astro-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-astro-title button {
  background: none;
  border: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.weather-astro-title button:hover {
  transform: scale(1.05);
}

.weather-astro-title button i {
  margin-left: 5px;
  font-size: 13px;
}

.weather-astro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  transition: transform 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.weather-astro-container:hover {
  transform: translateY(-2px);
}

.dark-mode .weather-astro-container {
  background-color: rgba(30, 30, 30, 0.2);
}

.weather-astro-item {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.weather-astro-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark-mode .weather-astro-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.weather-astro-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-astro-label i {
  margin-right: 6px;
  font-size: 18px;
}

.weather-astro-value {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: white;
  text-align: center;
}

/* 云层分布样式 */
.weather-cloud-profile {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.weather-cloud-profile-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weather-cloud-profile-label {
  width: 120px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.weather-cloud-profile-bar {
  flex: 1;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.weather-cloud-profile-fill {
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
  border-radius: 4px;
}

.weather-cloud-profile-value {
  width: 70px;
  text-align: right;
  font-size: 14px;
  color: white;
}

/* Additional astronomical information */
.weather-astro-additional {
  display: none;
  margin-top: 12px;
}

.weather-astro-additional.show {
  display: block;
  animation: fadeIn 0.3s cubic-bezier(0.2, 0, 0, 1);
}
