:root {
  --primary: #94a3b8;
  --primary-accent: #facc15;
  --bg-dark: #101114;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #e8eaed;
  --text-muted: #9aa0a6;
  --glass-blur: 24px;
  --radius-lg: 20px;
  --theme-primary: #facc15;
  --theme-glow: rgba(250, 204, 21, 0.2);
  --chart-fill: rgba(250, 204, 21, 0.05);
}
[data-theme="rain"] {
  --theme-primary: #38bdf8;
  --theme-glow: rgba(56, 189, 248, 0.2);
  --chart-fill: rgba(56, 189, 248, 0.05);
}
[data-theme="snow"] {
  --theme-primary: #ffffff;
  --theme-glow: rgba(255, 255, 255, 0.2);
  --chart-fill: rgba(255, 255, 255, 0.05);
}
[data-theme="stormy"] {
  --theme-primary: #a78bfa;
  --theme-glow: rgba(167, 139, 250, 0.2);
  --chart-fill: rgba(167, 139, 250, 0.05);
}
[data-theme="cloudy"] {
  --theme-primary: #94a3b8;
  --theme-glow: rgba(148, 163, 184, 0.2);
  --chart-fill: rgba(148, 163, 184, 0.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.gradient-bg {
  background: radial-gradient(circle at top right, #1a1a1a, #101114);
}
.bg-image-layer {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: -2;
}
.bg-image-layer.active {
  opacity: 0.05;
  z-index: -1;
}
.mesh-container {
  filter: blur(100px);
  opacity: 0.1;
  z-index: -3;
}
.mesh-ball {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #818cf8;
  border-radius: 50%;
  animation: move 20s infinite alternate;
}
@keyframes move {
  from {
    transform: translate(-10%, -10%);
  }
  to {
    transform: translate(20%, 20%);
  }
}

.dashboard.integrated-style {
  width: 100%;
  max-width: 900px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.app-header {
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 24px;
}
.main-search-container {
  display: flex;
  gap: 15px;
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1000;
}
.search-wrapper {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 36px;
  padding: 0px 0px 0px 50px;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
}
.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  opacity: 0.7;
}
.search-wrapper input {
  background: transparent;
  border: none;
  padding: 0;
  color: white;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  outline: none;
}
.clear-btn {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.clear-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.suggestions-list {
  position: absolute;
  top: 70px;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  z-index: 1001;
  transition: all 0.3s ease;
}
.suggestion-item {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(255, 255, 255, 0.08);
}
.suggestion-info {
  display: flex;
  flex-direction: column;
}
.suggestion-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
}
.suggestion-country {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.suggestion-icon {
  color: var(--theme-primary);
  opacity: 0.7;
}
.main-hero {
  display: flex;
  gap: 40px;
  align-items: center;
}
.main-hero {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-temp {
  font-size: 5rem;
  font-weight: 400;
}
.units {
  display: flex;
  margin-top: 10px;
  justify-content: space-around;
  align-items: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.units .active {
  color: white;
  border-bottom: 2px solid var(--theme-primary);
}
.hero-city {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--theme-primary);
  line-height: 1.2;
}
.hero-condition {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.hero-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.quick-stats {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.quick-stats span {
  color: white;
  font-weight: 500;
}
.chart-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 20px;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.tab-btn.active {
  color: white;
  border-bottom-color: var(--theme-primary);
}
.chart-container-main {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(5px);
  height: 225px;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
}
.daily-timeline-section {
  position: relative;
  margin: 10px 0;
  padding: 10px 0;
  overflow: visible;
}
.daily-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  width: 100%;
  margin-top: -10px;
}
.daily-wrapper::-webkit-scrollbar {
  display: none;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}
.daily-timeline-section:hover .nav-btn,
.daily-timeline-section:active .nav-btn {
  opacity: 1;
}
.nav-btn.prev {
  left: -25px;
}
.nav-btn.next {
  right: -25px;
}
.timeline-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 5;
  display: none;
}
@media (max-width: 900px) {
  .timeline-gradient {
    display: block;
  }
}
.timeline-gradient.left {
  left: -16px;
  background: linear-gradient(to right, #101114, transparent);
}
.timeline-gradient.right {
  right: -16px;
  background: linear-gradient(to left, #101114, transparent);
}
.forecast-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border: 1px solid var(--card-border);
  flex: 1 0 calc((100% / 7) - 11px);
  min-width: 85px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.forecast-card:hover {
  background: rgba(255, 255, 255, 0.02);
}
.forecast-card.selected {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--theme-primary);
  box-shadow: 0 0 5px 0px var(--theme-glow);
}
.forecast-day {
  font-size: 0.85rem;
  font-weight: 600;
}
.forecast-temp-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.high {
  font-size: 1rem;
  font-weight: 600;
}
.low {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.details-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(5px);
  padding: 18px;
  border-radius: 16px;
}
.stat-top {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}
.stat-val-small {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-val-small i {
  color: var(--theme-primary);
}
@media (max-width: 600px) {
  .main-hero {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .hero-temp {
    font-size: 3.5rem;
  }
  .details-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-wrapper {
    justify-content: flex-start;
  }
}
.unit-btn {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}
.unit-btn.active {
  opacity: 1;
  color: var(--theme-primary);
  font-weight: 600;
}
.unit-btn:hover {
  opacity: 0.8;
}
.notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast-alert {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border: 1px solid var(--card-border);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--theme-primary);
  animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s ease;
}
.toast-alert.closing {
  opacity: 0;
  transform: translateX(100px);
}
.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--theme-glow);
  color: var(--theme-primary);
}
.toast-body {
  flex: 1;
}
.toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.toast-msg {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.hidden {
  display: none !important;
}
.swal2-popup {
  background: rgba(32, 33, 36, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border) !important;
  border-radius: 24px !important;
  color: white !important;
}
.swal2-title,
.swal2-html-container {
  color: white !important;
  font-family: "Outfit" !important;
}
.swal2-confirm {
  background-color: var(--theme-primary) !important;
  color: #1a1a1a !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 40px;
  height: 40px;
  border: 3px solid #3c4043;
  border-top-color: var(--theme-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.ad-banner {
  min-height: 90px;
}

.ad-square-card {
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: var(--card-bg);
}

.ad-top {
  margin-top: 10px;
}
.ad-mid {
  margin: 0 auto;
}
.ad-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ad-container {
    border-radius: 12px;
  }
  .ad-footer-bottom {
    width: 100%;
    border-radius: 0;
  }
  .ad-square-card {
    min-height: 250px;
  }
}

.app-footer {
  margin-top: 30px;
}
.footer-credits {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-credits p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.heart {
  color: #ff4d4d;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}
.credit-link {
  color: var(--theme-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.credit-link:hover {
  opacity: 1;
  text-decoration: underline;
}
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@media (max-width: 600px) {
  .app-footer {
    margin-top: 30px;
    padding: 20px 10px;
  }
}

.layout-wrapper {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.city-sidebar.static {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 25px;
  height: fit-content;
  max-height: calc(100vh - 50px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-sidebar.static.collapsed {
  width: 0;
  margin-right: -30px;
  opacity: 0;
  pointer-events: none;
  border: none;
}

.sidebar-brand {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--card-border);
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
}

.brand-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.sidebar-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 600;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-list button {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  backdrop-filter: blur(5px);
}

.city-info-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-list button i {
  color: var(--theme-primary);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.sidebar-list button.active {
  background: rgb(255 255 255 / 15%);
  border-color: var(--theme-primary);
  color: var(--theme-primary);
  font-weight: 700;
}

.sidebar-list button.active i {
  opacity: 1;
}

.city-temp {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  opacity: 0.8;
}

.sidebar-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.sidebar-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--theme-primary);
}

.search-container-full {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 100;
}

.search-container-full .search-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0px 0px 0px 26px;
  height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  width: 100%;
}

.search-container-full .search-wrapper:focus-within {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

.search-container-full .search-icon {
  color: var(--text-muted);
  min-width: 24px;
}

.search-container-full .search-wrapper:focus-within .search-icon {
  color: var(--theme-primary);
}

.search-container-full input {
  background: transparent;
  border: none;
  color: white;
  padding: 0px 0px 0px 26px;
  width: 100%;
  height: 100%;
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.search-container-full .suggestions-list {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  backdrop-filter: blur(5px);
  z-index: 5000;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.search-container-full .suggestion-item {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-container-full .suggestion-item:last-child {
  border-bottom: none;
}

.search-container-full .suggestion-item:hover {
  background: rgba(250, 204, 21, 0.1);
  color: var(--theme-primary);
}

.search-container-full .suggestion-info {
  display: flex;
  flex-direction: column;
}

.search-container-full .suggestion-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

.search-container-full .suggestion-country {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.search-container-full .suggestion-icon {
  color: var(--text-muted);
  opacity: 0.5;
}

.search-container-full .suggestion-item:hover .suggestion-icon {
  color: var(--theme-primary);
  opacity: 1;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-city-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 18px;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  outline: none;
}

.popular-city-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.popular-city-card.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--theme-primary);
}

.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.card-city-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
}

.card-main-temp {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--theme-primary);
  line-height: 1;
}

.card-condition-row {
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.card-condition-text {
  font-weight: 600;
  color: var(--text-main);
  opacity: 0.9;
}

.card-current-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.card-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card-stat-item b {
  color: var(--text-main);
  font-weight: 600;
}

.card-stat-item i {
  color: var(--theme-primary);
  opacity: 0.6;
}

.sidebar-group label {
  display: none;
}

.sidebar-content {
  padding: 15px;
}

.seo-content-section {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.seo-card {
  line-height: 1.8;
  color: var(--text-muted);
}

.seo-card h2 {
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.seo-card h3 {
  color: white;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.seo-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.seo-card li {
  margin-bottom: 10px;
}
.seo-card a {
  color: var(--theme-primary);
  text-decoration: none;
}
.seo-card b,
.seo-card strong {
  color: white;
}

.toast-alert {
  position: fixed;
  top: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-20px) !important;
  z-index: 5000;
}

.toast-alert.show {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1;
}

@media (max-width: 1100px) {
  .main-search-container {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .sidebar-toggle-btn {
    display: flex;
  }
  .city-sidebar.static.collapsed {
    transform: translateX(-100%);
    width: 100%;
    margin-right: 0;
    position: fixed;
    opacity: 1;
    pointer-events: all;
  }
  .city-sidebar.static {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    transform: translateX(-100%);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 5000;
  }
  .sidebar-close-btn {
    display: flex;
  }
  .city-sidebar.static.active {
    transform: translateX(0);
  }
  .layout-wrapper {
    flex-direction: column;
    padding: 0 15px;
    margin-top: 20px;
  }
  .dashboard.integrated-style {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-temp {
    font-size: 3.5rem;
  }
  .hero-city {
    font-size: 1.4rem;
  }
  .details-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
