/* WeatherWidget.css */
.weather-link-wrapper {
  text-decoration: none;
}

.weather-widget-pro {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-width: 240px;
  height: 64px;
}

.weather-widget-pro:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.weather-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  border-right: 1px solid #e2e8f0;
  padding-right: 15px;
}

.weather-city {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  text-transform: capitalize;
}

.weather-desc {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: capitalize;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-icon {
  font-size: 28px;
  color: #475569;
  width: 32px;
  text-align: center;
}

.weather-temp {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}

.weather-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
}

.weather-detail-item i {
  font-size: 10px;
  color: #6366f1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .weather-widget-pro {
    min-width: unset;
    padding: 4px 8px;
    gap: 6px;
    height: 48px;
    border-radius: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .weather-details, .weather-left {
    display: none;
  }
  .weather-temp {
    font-size: 14px;
  }
  .weather-icon {
    font-size: 20px;
    width: 24px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .weather-city {
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
