/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
@layer properties;
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Givonic';
  src: url('/fonts/givonic/Givonic-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.theme-modern {
  --m-accent: #FFAD51;
  --m-accent-end: #FF9112;
  --m-gradient: linear-gradient(90deg, #FFAD51 0%, #FF9112 100%);
  --m-font: 'Givonic', 'Poppins', sans-serif;
  --m-black: #000000;
  --m-black-1: #252222;
  --m-white: #FFFFFF;
  --m-white-1: #F0F5FF;
  --m-gray: #898E8F;
  --m-transition: all 0.5s ease-in-out;
  --m-bg: #FAFBFF;
}
.theme-modern.dark {
  --m-bg: #252222;
  --m-black: #FFFFFF;
  --m-black-1: #F0F5FF;
  --m-white: #252222;
  --m-white-1: #F0F5FF;
  --m-gray: #ccc;
}
html.theme-modern {
  overflow-x: hidden;
}
.theme-modern {
  font-family: var(--m-font);
  color: var(--m-gray);
  background: var(--m-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-modern body {
  display: block;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
}
.theme-modern #app-layout {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}
.theme-modern h1, .theme-modern h2, .theme-modern h3, .theme-modern h4, .theme-modern h5, .theme-modern h6 {
  font-family: var(--m-font);
  font-weight: 750;
  color: var(--m-black-1);
}
.theme-modern a {
  color: inherit;
  text-decoration: none;
  transition: var(--m-transition);
}
.theme-modern a:hover {
  color: var(--m-accent);
}
.theme-modern img {
  max-width: 100%;
  height: auto;
}
.theme-modern .m-header {
  width: 100%;
  padding: 18px 0;
  background: var(--m-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.theme-modern .m-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-modern .m-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.theme-modern .m-logo-img {
  height: 40px;
  width: auto;
}
.theme-modern .m-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--m-black-1);
  letter-spacing: -0.5px;
}
.theme-modern .m-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.theme-modern .m-nav-link {
  font-weight: 500;
  font-size: 19px;
  color: var(--m-black-1);
  text-decoration: none;
  transition: var(--m-transition);
}
.theme-modern .m-nav-link:hover, .theme-modern .m-nav-link-active {
  color: var(--m-accent);
}
.theme-modern .m-search {
  position: relative;
  max-width: 400px;
  flex: 1;
  margin: 0 32px;
}
.theme-modern .m-search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: none;
  border-radius: 12px;
  background: var(--m-white-1);
  font-family: var(--m-font);
  font-size: 16px;
  color: var(--m-black-1);
  outline: none;
  transition: var(--m-transition);
}
.theme-modern .m-search-input::placeholder {
  color: var(--m-gray);
}
.theme-modern .m-search-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 173, 81, 0.3);
}
.theme-modern .m-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--m-accent);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}
.theme-modern .m-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--m-white);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
}
.theme-modern .m-search-dropdown-visible {
  display: block;
}
.theme-modern .m-search-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--m-transition);
}
.theme-modern .m-search-item:hover {
  background: var(--m-white-1);
  color: var(--m-accent);
}
.theme-modern .m-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--m-black-1);
  cursor: pointer;
  padding: 8px;
}
.theme-modern .m-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--m-white);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1001;
}
.theme-modern .m-menu-open {
  display: block;
}
.theme-modern .m-menu-link {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  font-size: 18px;
  color: var(--m-black-1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.theme-modern .m-menu-link:hover {
  color: var(--m-accent);
}
.theme-modern .m-menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 8px 0;
}
.theme-modern .m-menu-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--m-gray);
  padding: 8px 0 4px;
}
.theme-modern .m-hero {
  background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 40%, rgba(255,255,255,0) 70%), url('/images/bg/bg-4.png') center/cover no-repeat;
  padding: 40px 16px;
  height: auto;
}
@media (min-width: 992px) {
  .theme-modern .m-hero {
    display: flex;
    align-items: center;
    padding: 110px 0;
    height: 800px;
  }
}
.theme-modern.dark .m-hero {
  background-image: url('/images/bg/bg-2.png');
}
.theme-modern .m-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
}
.theme-modern .m-hero-text {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 24px;
}
.theme-modern .m-hero-card {
  display: block;
  width: 100%;
  box-sizing: border-box;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .theme-modern .m-hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .theme-modern .m-hero-text {
    flex: 1 1 0;
    width: auto;
    text-align: left;
    max-width: none;
    margin: 0;
  }
  .theme-modern .m-hero-card {
    flex: 0 0 380px;
    width: 380px;
    max-width: none;
    margin: 0;
  }
}
.theme-modern .m-hero-text h5 {
  font-weight: 500;
  font-size: 19px;
  color: var(--m-accent);
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}
.theme-modern .m-hero-text h1 {
  font-size: 69px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.theme-modern.dark .m-hero-text h1 {
  color: var(--m-white);
}
.theme-modern .m-hero-subtitle {
  font-size: 19px;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
  font-weight: 500;
}
.theme-modern .m-hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}
.theme-modern .m-hero-text h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--m-accent);
}
.theme-modern .m-hero-text h2 {
  font-size: 69px;
  color: var(--m-black-1);
  margin-bottom: 20px;
  line-height: 1.1;
}
.theme-modern.dark .m-hero-text h2 {
  color: var(--m-white);
}
.theme-modern .m-hero-text p {
  font-size: 19px;
  color: #fff;
  line-height: 1.5;
}
.theme-modern.dark .m-hero-text p {
  color: var(--m-white-1);
}
.theme-modern .m-hero-search {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(240, 245, 255, 0.6) 100%);
  padding: 20px 16px;
  border-radius: 16px;
  position: relative;
}
.theme-modern .m-hero-search-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border: none;
  border-radius: 10px;
  background: var(--m-white-1);
  font-family: var(--m-font);
  font-size: 19px;
  color: var(--m-black-1);
  outline: none;
}
.theme-modern .m-hero-search-btn {
  position: absolute;
  top: 18px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--m-accent);
  font-size: 28px;
  cursor: pointer;
}
.theme-modern .m-geo-locate-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 8px;
}
.theme-modern .m-geo-locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 173, 81, 0.50);
  border: 2px solid rgba(255, 173, 81, 0.50);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--m-transition);
}
.theme-modern .m-geo-locate-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.theme-modern .m-geo-locate-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.theme-modern .m-geo-locate-btn i {
  font-size: 13px;
  color: #fff;
}
.theme-modern.dark .m-geo-locate-btn {
  color: #fff;
}
.theme-modern .m-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.79) 0%, rgba(240, 245, 255, 0) 100%);
  border-radius: 20px;
  text-align: center;
  padding: 32px 0;
  height: auto;
}
@media (min-width: 992px) {
  .theme-modern .m-hero-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    height: 552px;
  }
}
.theme-modern.dark .m-hero-card {
  background: linear-gradient(180deg, rgba(56, 56, 56, 0.79) 0%, rgba(85, 85, 85, 0) 95.31%);
}
.theme-modern .m-hero-card-location {
  font-size: 19px;
  font-weight: 500;
  color: #0072CE;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0.005em;
}
.theme-modern .m-hero-card-temp {
  font-size: 95px;
  font-weight: 400;
  color: #0072CE;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.theme-modern .m-hero-card-temp-degree {
  font-size: 33px;
  font-weight: 400;
  color: #0072CE;
  margin-top: 12px;
}
.theme-modern .m-hero-card-condition {
  font-size: 28px;
  color: #0072CE;
  margin-bottom: 6px;
}
.theme-modern .m-hero-card-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #0072CE;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.theme-modern .m-hero-card-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
}
.theme-modern .m-hero-card-detail {
  text-align: center;
  background: rgba(128, 128, 128, 0.50);
  padding: 12px 16px;
  border-radius: 10px;
}
.theme-modern .m-hero-card-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 34, 34, 0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.theme-modern .m-hero-card-detail-icon img {
  width: 28px;
  height: 28px;
}
.theme-modern .m-hero-card-detail-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.theme-modern .m-hero-card-detail-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.theme-modern .m-unit-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px;
  justify-content: flex-end;
}
.theme-modern .m-unit-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 16px;
  padding: 6px 14px;
  cursor: pointer;
  font-family: var(--m-font);
  font-size: 14px;
  font-weight: 600;
  transition: var(--m-transition);
}
.theme-modern .m-unit-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.theme-modern .m-unit-btn-active {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--m-accent) !important;
}
.theme-modern .m-section {
  padding: 60px 0;
}
.theme-modern .m-section-title {
  font-size: 33px;
  font-weight: 750;
  color: var(--m-black-1);
  margin-bottom: 32px;
  text-align: center;
}
.theme-modern.dark .m-section-title {
  color: var(--m-white);
}
.theme-modern .m-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.theme-modern .m-hourly {
  background: var(--m-white-1);
  padding: 60px 0;
}
.theme-modern.dark .m-hourly {
  background: rgba(0, 0, 0, 0.2);
}
.theme-modern .m-hourly-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--m-accent) transparent;
  flex: 1;
  min-width: 0;
}
.theme-modern .m-hourly-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .theme-modern .m-hourly-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .theme-modern .m-hourly-days {
    flex-direction: row;
    flex: none;
    overflow-x: auto;
    width: 100%;
    gap: 8px;
    padding-bottom: 4px;
  }
  .theme-modern .m-hourly-day-btn {
    flex: 0 0 auto;
    padding: 8px 14px;
  }
  .theme-modern .m-hourly-scroll {
    width: 100%;
    flex: none;
    overflow-x: auto;
  }
}
.theme-modern .m-hourly-days {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 160px;
}
.theme-modern .m-hourly-day-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: var(--m-transition);
  text-align: left;
  font-family: inherit;
}
.theme-modern .m-hourly-day-btn:hover {
  background: rgba(37, 34, 34, 0.05);
}
.theme-modern .m-hourly-day-btn-active {
  background: #F0F5FF;
  font-weight: 600;
}
.theme-modern .m-hourly-day-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--m-black-1);
}
.theme-modern .m-hourly-day-date {
  font-size: 12px;
  color: var(--m-gray);
}
.theme-modern.dark .m-hourly-day-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.theme-modern.dark .m-hourly-day-btn-active {
  background: rgba(255, 255, 255, 0.1);
}
.theme-modern.dark .m-hourly-day-name {
  color: var(--m-white);
}
.theme-modern .m-hourly-scroll::-webkit-scrollbar {
  height: 6px;
}
.theme-modern .m-hourly-scroll::-webkit-scrollbar-thumb {
  background: var(--m-accent);
  border-radius: 3px;
}
.theme-modern .m-hourly-card {
  flex: 0 0 160px;
  padding: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F5FF 100%);
  border-radius: 10px;
  text-align: center;
  transition: var(--m-transition);
}
.theme-modern.dark .m-hourly-card {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.theme-modern .m-hourly-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.theme-modern .m-hourly-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--m-gray);
  margin-bottom: 12px;
}
.theme-modern .m-hourly-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}
.theme-modern .m-hourly-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
}
.theme-modern .m-hourly-icon img[src*="sun"] {
  filter: none;
}
.theme-modern .m-hourly-icon img[src*="storm"] {
  filter: grayscale(1) brightness(0.35);
}
.theme-modern .m-hourly-temp {
  font-size: 23px;
  font-weight: 400;
  color: var(--m-black-1);
  margin-bottom: 8px;
}
.theme-modern.dark .m-hourly-temp {
  color: var(--m-white);
}
.theme-modern .m-hourly-divider {
  width: 100%;
  height: 1px;
  background: var(--m-black);
  margin: 12px 0;
}
.theme-modern .m-hourly-detail {
  font-size: 13px;
  color: var(--m-gray);
}
.theme-modern .m-hourly-detail i {
  margin-right: 4px;
}
.theme-modern .m-today {
  padding: 60px 0;
}
.theme-modern .m-today-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.theme-modern .m-today-card {
  border-radius: 20px;
  text-align: center;
  padding: 48px 24px;
  transition: var(--m-transition);
}
.theme-modern .m-today-card-main {
  background: #F0F5FF;
  color: var(--m-black-1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.theme-modern .m-today-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  filter: grayscale(1) brightness(0.6);
  shape-rendering: geometricPrecision;
  will-change: filter;
}
.theme-modern .m-today-card-icon[src*="sun"] {
  filter: none;
  shape-rendering: geometricPrecision;
  will-change: filter;
}
.theme-modern.dark .m-today-card-main {
  background: rgba(56, 56, 56, 0.79);
  color: var(--m-white);
}
.theme-modern.dark .m-today-card-main h4, .theme-modern.dark .m-today-card-main h2, .theme-modern.dark .m-today-card-main h2 b {
  color: var(--m-white);
}
.theme-modern.dark .m-today-card-main p {
  color: #aaa;
}
.theme-modern .m-today-card-main h4 {
  color: var(--m-black-1);
  font-size: 23px;
  margin-bottom: 16px;
}
.theme-modern .m-today-label {
  color: var(--m-black-1);
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 16px;
}
.theme-modern .m-today-value {
  color: var(--m-black-1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 500;
}
.theme-modern .m-today-value b {
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}
.theme-modern.dark .m-today-label {
  color: var(--m-white);
}
.theme-modern.dark .m-today-value {
  color: var(--m-white);
}
.theme-modern .m-today-card-main h2 {
  color: var(--m-black-1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 16px;
}
.theme-modern .m-today-card-main h2 b {
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}
.theme-modern .m-today-card-main p {
  color: var(--m-gray);
  font-size: 19px;
  margin: 0;
}
.theme-modern .m-today-card-info {
  background: var(--m-white-1);
}
.theme-modern.dark .m-today-card-info {
  background: rgba(0, 0, 0, 0.3);
}
.theme-modern .m-today-card-info i {
  font-size: 64px;
  color: var(--m-accent);
  margin-bottom: 16px;
}
.theme-modern .m-today-card-info h5 {
  font-size: 19px;
  color: var(--m-black);
  margin-bottom: 8px;
}
.theme-modern.dark .m-today-card-info h5 {
  color: var(--m-white);
}
.theme-modern .m-today-card-info p {
  font-size: 28px;
  color: var(--m-black);
}
.theme-modern.dark .m-today-card-info p {
  color: var(--m-white);
}
.theme-modern .m-today-card-chart {
  background: var(--m-white);
  padding: 32px;
}
.theme-modern.dark .m-today-card-chart {
  background: rgba(0, 0, 0, 0.3);
}
.theme-modern .m-weekly {
  padding: 60px 0;
}
.theme-modern .m-weekly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.theme-modern .m-weekly-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 32px 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--m-transition);
}
.theme-modern .m-weekly-card::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(7.5px);
  z-index: 1;
}
.theme-modern .m-weekly-card > * {
  position: relative;
  z-index: 2;
}
.theme-modern .m-weekly-card:hover {
  transform: translateY(-4px);
}
.theme-modern .m-weekly-day {
  font-size: 16px;
  font-weight: 600;
  color: var(--m-white);
  margin-bottom: 8px;
}
.theme-modern .m-weekly-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.theme-modern .m-weekly-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.theme-modern .m-weekly-temp {
  font-size: 23px;
  font-weight: 400;
  color: var(--m-white);
}
.theme-modern .m-weekly-condition {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
.theme-modern .m-weekly-card[data-day="0"] {
  background: url('/images/weekly/bg-11.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="1"] {
  background: url('/images/weekly/bg-12.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="2"] {
  background: url('/images/weekly/bg-13.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="3"] {
  background: url('/images/weekly/bg-14.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="4"] {
  background: url('/images/weekly/bg-8.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="5"] {
  background: url('/images/weekly/bg-9.png') center/cover;
}
.theme-modern .m-weekly-card[data-day="6"] {
  background: url('/images/weekly/bg-10.png') center/cover;
}
.theme-modern .m-info {
  padding: 60px 0;
  background: var(--m-white-1);
}
.theme-modern.dark .m-info {
  background: rgba(0, 0, 0, 0.2);
}
.theme-modern .m-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.theme-modern .m-info-card {
  background: var(--m-white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--m-transition);
}
.theme-modern.dark .m-info-card {
  background: rgba(0, 0, 0, 0.3);
}
.theme-modern .m-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.theme-modern .m-info-icon {
  width: 64px;
  height: 64px;
  background: var(--m-white-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.theme-modern .m-info-icon img {
  width: 32px;
  height: 32px;
}
.theme-modern .m-info-value {
  font-size: 28px;
  font-weight: 400;
  color: var(--m-black-1);
  margin-bottom: 4px;
}
.theme-modern.dark .m-info-value {
  color: var(--m-white);
}
.theme-modern .m-info-label {
  font-size: 13px;
  color: var(--m-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.theme-modern .m-chart {
  background: var(--m-white);
  border-radius: 20px;
  padding: 32px;
  margin-top: 24px;
}
.theme-modern.dark .m-chart {
  background: rgba(0, 0, 0, 0.3);
}
.theme-modern .m-chart-title {
  font-size: 16px;
  color: var(--m-gray);
  text-align: center;
  margin-bottom: 16px;
}
.theme-modern .m-chart-container {
  height: 240px;
  position: relative;
}
.theme-modern .m-chart-legends {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
}
.theme-modern .m-chart-legend {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-modern .m-chart-legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.theme-modern .m-chart-legend-name {
  font-size: 13px;
  color: var(--m-gray);
}
.theme-modern .tkt-select-bar {
  width: fit-content;
  margin: 0 auto 0 auto;
}
.theme-modern .m-map {
  padding: 60px 0;
}
.theme-modern .m-map-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--m-white-1);
}
.theme-modern .m-webcam {
  padding: 60px 0;
  background: var(--m-white-1);
}
.theme-modern.dark .m-webcam {
  background: rgba(0, 0, 0, 0.2);
}
.theme-modern .m-webcam-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
.theme-modern .m-webcam-iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
  border-radius: 20px;
}
.theme-modern .m-webcam-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(220, 30, 30, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 10;
}
.theme-modern .m-latest {
  padding: 40px 0;
}
.theme-modern .m-latest-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--m-gray);
  margin-bottom: 16px;
}
.theme-modern .m-latest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.theme-modern .m-latest-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--m-white-1);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--m-black-1);
  text-decoration: none;
  transition: var(--m-transition);
}
.theme-modern.dark .m-latest-tag {
  background: rgba(0, 0, 0, 0.3);
  color: var(--m-white);
}
.theme-modern .m-latest-tag:hover {
  background: var(--m-accent);
  color: var(--m-white);
}
.theme-modern .m-footer {
  padding: 60px 0 30px;
  background: var(--m-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.theme-modern.dark .m-footer {
  background: var(--m-black-1);
  border-top-color: rgba(255, 255, 255, 0.06);
}
.theme-modern .m-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.theme-modern .m-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.theme-modern .m-footer-logo-img {
  height: 40px;
  width: auto;
}
.theme-modern .m-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-bottom: 24px;
}
.theme-modern .m-footer-link {
  font-weight: 500;
  font-size: 19px;
  color: var(--m-black-1);
  text-decoration: none;
  transition: var(--m-transition);
}
.theme-modern.dark .m-footer-link {
  color: var(--m-white);
}
.theme-modern .m-footer-link:hover {
  color: var(--m-accent);
}
.theme-modern .m-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.theme-modern .m-footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--m-black-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-black-1);
  text-decoration: none;
  transition: var(--m-transition);
}
.theme-modern.dark .m-footer-social-link {
  border-color: var(--m-white);
  color: var(--m-white);
}
.theme-modern .m-footer-social-link:hover {
  background: var(--m-black-1);
  border-color: var(--m-black-1);
  color: var(--m-white);
}
.theme-modern.dark .m-footer-social-link:hover {
  background: var(--m-accent);
  border-color: var(--m-accent);
  color: var(--m-white);
}
.theme-modern .m-footer-copyright {
  font-size: 14px;
  color: var(--m-gray);
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.theme-modern.dark .m-footer-copyright {
  border-top-color: rgba(255, 255, 255, 0.06);
}
.theme-modern .m-footer-copyright a {
  color: var(--m-accent);
}
.theme-modern .m-loading {
  text-align: center;
  padding: 120px 20px;
}
.theme-modern .m-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--m-white-1);
  border-top: 3px solid var(--m-accent);
  border-radius: 50%;
  animation: m-spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes m-spin {
  to {
    transform: rotate(360deg);
  }
}
.theme-modern .m-loading-text {
  font-size: 16px;
  color: var(--m-gray);
}
.theme-modern .m-error {
  background: var(--m-accent);
  padding: 24px;
  color: #fff;
  margin-top: 20px;
  border-radius: 12px;
  text-align: center;
}
.theme-modern .m-error-title {
  font-size: 18px;
  font-weight: 500;
}
.theme-modern .m-banner {
  width: 100%;
  padding: 12px 0;
  color: #fff;
  text-align: center;
}
.theme-modern .m-banner-info {
  background: #3498db;
}
.theme-modern .m-banner-warning {
  background: #f39c12;
}
.theme-modern .m-banner-error {
  background: #e74c3c;
}
@media (max-width: 1199px) {
  .theme-modern .m-hero-text h2 {
    font-size: 48px;
  }
  .theme-modern .m-hero-text h1 {
    font-size: 48px;
  }
  .theme-modern .m-hero {
    height: auto;
    padding: 80px 0 100px;
  }
  .theme-modern .m-weekly-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .theme-modern .m-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .theme-modern .m-today-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .theme-modern .m-container {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .theme-modern .m-hero-content {
    text-align: center;
  }
  .theme-modern .m-hero {
    padding: 40px 0 80px;
    height: auto;
  }
  .theme-modern .m-hero-text h5 {
    padding-left: 0;
  }
  .theme-modern .m-hero-text h5::before {
    display: none;
  }
  .theme-modern .m-nav {
    display: none;
  }
  .theme-modern .m-menu-toggle {
    display: block;
  }
  .theme-modern .m-today-grid {
    grid-template-columns: 1fr;
  }
  .theme-modern .m-weekly-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .theme-modern .m-chart-legends {
    flex-wrap: wrap;
    gap: 12px;
  }
  .theme-modern .m-section {
    padding: 40px 0;
  }
  .theme-modern .m-section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .theme-modern .m-hero {
    padding: 32px 0 60px;
    height: auto;
  }
  .theme-modern .m-hero-text h2 {
    font-size: 38px;
  }
  .theme-modern .m-hero-text h1 {
    font-size: 38px;
  }
  .theme-modern .m-hero-card-temp {
    font-size: 69px;
  }
  .theme-modern .m-hero-card-condition {
    font-size: 22px;
  }
  .theme-modern .m-section-title {
    font-size: 24px;
  }
  .theme-modern .m-section {
    padding: 32px 0;
  }
  .theme-modern .m-weekly-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .theme-modern .m-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .theme-modern .m-webcam-iframe {
    height: 280px;
  }
  .theme-modern .m-today-card {
    padding: 32px 16px;
  }
  .theme-modern .m-info-card {
    padding: 24px 16px;
  }
  .theme-modern .m-chart {
    padding: 20px 16px;
  }
  .theme-modern .m-chart-container {
    height: 200px;
  }
  .theme-modern .m-map-container {
    border-radius: 12px;
  }
  .theme-modern .m-container {
    padding: 0 16px;
  }
}
@media (max-width: 490px) {
  .theme-modern .m-hero-text h2 {
    font-size: 32px;
  }
  .theme-modern .m-hero-text h1 {
    font-size: 32px;
  }
  .theme-modern .m-hero-text p {
    font-size: 16px;
  }
  .theme-modern .m-hero-card-temp {
    font-size: 57px;
  }
  .theme-modern .m-hero-card-details {
    flex-direction: column;
    gap: 16px;
  }
  .theme-modern .m-hero-search-input {
    font-size: 16px;
    padding: 14px 44px 14px 16px;
  }
  .theme-modern .m-weekly-grid {
    grid-template-columns: 1fr;
  }
  .theme-modern .m-info-grid {
    grid-template-columns: 1fr;
  }
  .theme-modern .m-today-grid {
    grid-template-columns: 1fr;
  }
  .theme-modern .m-footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .theme-modern .m-header-content {
    padding: 0 12px;
  }
  .theme-modern .m-logo-text {
    font-size: 20px;
  }
  .theme-modern .m-section-title {
    font-size: 22px;
  }
  .theme-modern .m-today-card-main {
    min-height: 240px;
    padding: 32px 16px;
  }
  .theme-modern .m-today-card-main h4 {
    font-size: 19px;
  }
  .theme-modern .m-today-card-main h2 b {
    font-size: 32px;
  }
  .theme-modern .m-today-card-info p {
    font-size: 22px;
  }
  .theme-modern .m-info-value {
    font-size: 22px;
  }
  .theme-modern .m-chart-container {
    height: 180px;
  }
  .theme-modern .m-map-container {
    border-radius: 10px;
  }
}
.theme-modern ::-webkit-scrollbar {
  width: 10px;
}
.theme-modern ::-webkit-scrollbar-track {
  background-color: var(--m-white);
  border-radius: 3px;
}
.theme-modern ::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--m-accent);
  box-shadow: inset 2px 2px 5px 0 rgba(255, 255, 255, 0.5);
}
.theme-modern ::selection {
  background: var(--m-accent);
  color: #fff;
}
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --spacing: 0.25rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --animate-spin: spin 1s linear infinite;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none !important;
  }
}
@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .static {
    position: static;
  }
  .z-50 {
    z-index: 50;
  }
  .float-left {
    float: left;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .mt-1\.5 {
    margin-top: calc(var(--spacing) * 1.5);
  }
  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .ml-1 {
    margin-left: calc(var(--spacing) * 1);
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .table {
    display: table;
  }
  .size-3 {
    width: calc(var(--spacing) * 3);
    height: calc(var(--spacing) * 3);
  }
  .size-4 {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }
  .size-5 {
    width: calc(var(--spacing) * 5);
    height: calc(var(--spacing) * 5);
  }
  .w-0 {
    width: calc(var(--spacing) * 0);
  }
  .w-80 {
    width: calc(var(--spacing) * 80);
  }
  .w-full {
    width: 100%;
  }
  .max-w-80 {
    max-width: calc(var(--spacing) * 80);
  }
  .flex-1 {
    flex: 1;
  }
  .flex-none {
    flex: none;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .translate-y-0 {
    --tw-translate-y: calc(var(--spacing) * 0);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .translate-y-4 {
    --tw-translate-y: calc(var(--spacing) * 4);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .self-start {
    align-self: flex-start;
  }
  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .leading-8 {
    --tw-leading: calc(var(--spacing) * 8);
    line-height: calc(var(--spacing) * 8);
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .text-wrap {
    text-wrap: wrap;
  }
  .opacity-0 {
    opacity: 0%;
  }
  .opacity-40 {
    opacity: 40%;
  }
  .opacity-100 {
    opacity: 100%;
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-200 {
    --tw-duration: 200ms;
    transition-duration: 200ms;
  }
  .duration-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .ease-in {
    --tw-ease: var(--ease-in);
    transition-timing-function: var(--ease-in);
  }
  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }
  .group-hover\:opacity-70 {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        opacity: 70%;
      }
    }
  }
  .hover\:cursor-pointer {
    &:hover {
      @media (hover: hover) {
        cursor: pointer;
      }
    }
  }
  .motion-safe\:animate-spin {
    @media (prefers-reduced-motion: no-preference) {
      animation: var(--animate-spin);
    }
  }
  .sm\:w-96 {
    @media (width >= 40rem) {
      width: calc(var(--spacing) * 96);
    }
  }
  .sm\:max-w-96 {
    @media (width >= 40rem) {
      max-width: calc(var(--spacing) * 96);
    }
  }
  .sm\:translate-y-0 {
    @media (width >= 40rem) {
      --tw-translate-y: calc(var(--spacing) * 0);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .sm\:scale-95 {
    @media (width >= 40rem) {
      --tw-scale-x: 95%;
      --tw-scale-y: 95%;
      --tw-scale-z: 95%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
  .sm\:scale-100 {
    @media (width >= 40rem) {
      --tw-scale-x: 100%;
      --tw-scale-y: 100%;
      --tw-scale-z: 100%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}
:root {
  --canvas-color: #F5F5F5;
  --background-color: #FFF;
  --primary-color: #0072CE;
  --secondary-color: #0058A0;
  --neutral-color: #999;
  --text-color: #777;
  --alt-bg-color: #F5F5F5;
  --alt-bg-color-h: #EEE;
  --alt-bg-color-a: #DDD;
  --alt-color: #666;
  --divider-bg-color: #E0E0E0;
  --url-color: #555;
  --url-color-a: #333;
  --url-color-h: #111;
  --icon-bg-color: 65%;
  --icon-bg-color-h: 45%;
  --icon-bg-color-a: 25%;
  --button-text-color: #FFF;
  --button-neu-bg-color: #777;
  --button-neu-bg-color-h: #666;
  --button-del-bg-color: #f75151;
  --button-del-bg-color-h: #e44949;
  --button-dis-bg-color: #AFAFAF;
  --input-color: #666;
  --input-bg-color: #FFF;
  --input-bg-color-alt: #FFF;
  --input-border-color: #DDD;
  --input-border-color-h: #BBB;
  --notifications-color: #FFF;
  --notifications-success: #27ae60;
  --notifications-error: #FF5757;
  --notifications-info: #3498db;
  --notifications-warning: #f39c12;
  --wn-color: #FFF;
  --wn-img: invert(100%);
  --wf-img: invert(35%);
  --wf-list-h: #e8e8e8;
  --min-temp: #999;
  --graph-min-color: #5a7fff;
  --graph-max-color: #e84831;
  --cover-top: rgba(0, 80, 160, 0.15);
  --cover-bottom: rgba(0, 50, 120, 0.85);
  --button-clear-invert: invert(80%);
  --button-clear-invert-h: invert(50%);
  --button-remove-invert: invert(60%);
  --button-remove-invert-h: invert(30%);
  --button-round: invert(100%);
  --button-round-h: invert(20%);
  --banner-info-bg: #3498db;
  --banner-warning-bg: #f39c12;
  --banner-error-bg: #e74c3c;
}
.dark {
  --canvas-color: #1a1a2e;
  --background-color: #16213e;
  --primary-color: #4a9eff;
  --secondary-color: #6bb5ff;
  --neutral-color: #888;
  --text-color: #AAA;
  --alt-bg-color: #0f3460;
  --alt-bg-color-h: #0a2a50;
  --alt-bg-color-a: #071e38;
  --alt-color: #AAA;
  --divider-bg-color: #1e3a5f;
  --url-color: #CCC;
  --url-color-a: #EEE;
  --url-color-h: #FFF;
  --icon-bg-color: 60%;
  --icon-bg-color-h: 80%;
  --icon-bg-color-a: 100%;
  --button-neu-bg-color: #1e3a5f;
  --button-neu-bg-color-h: #2a4d7f;
  --button-dis-bg-color: #1a2a40;
  --input-color: #AAA;
  --input-bg-color: #0f3460;
  --input-bg-color-alt: #0a2a50;
  --input-border-color: #1e3a5f;
  --input-border-color-h: #2a4d7f;
  --wn-img: invert(100%);
  --wf-img: invert(65%);
  --wf-list-h: #1e3a5f;
  --min-temp: #888;
  --cover-top: rgba(0, 20, 60, 0.3);
  --cover-bottom: rgba(0, 10, 30, 0.9);
  --button-clear-invert: invert(30%);
  --button-clear-invert-h: invert(60%);
  --button-remove-invert: invert(40%);
  --button-remove-invert-h: invert(70%);
}
html {
  background: var(--canvas-color);
  font-family: sans-serif;
  height: 100%;
}
body {
  color: var(--text-color);
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
h1 {
  font-size: 52px;
  margin: 0;
  padding: 5px 15px;
}
h3 {
  font-size: 22px;
  margin: 10px 0;
}
h4 {
  font-size: 18px;
  margin: 10px 0 0 0;
}
h1, h3, h4, h5 {
  font-weight: 300;
}
a {
  color: var(--url-color);
  text-decoration: none;
}
a:hover {
  color: var(--url-color-h);
}
table {
  border-collapse: collapse;
}
table, td, th {
  padding: 3px;
}
label {
  display: inline-block;
  margin-bottom: 5px;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
input[type="text"], input[type="password"], input[type="email"], textarea {
  background: var(--input-bg-color);
  padding: 9px;
  border-radius: 3px;
  border: 1px solid var(--input-border-color);
  outline: 0;
  color: var(--input-color);
  display: block;
  margin-bottom: 10px;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}
input[type="text"]:hover, input[type="password"]:hover, input[type="text"]:focus, input[type="password"]:focus {
  border: 1px solid var(--input-border-color-h);
}
input[type="checkbox"] {
  margin: 0 10px 10px 0;
}
button, .button {
  padding: 0 14px;
  border-radius: 3px;
  background-color: var(--primary-color);
  color: var(--button-text-color);
  cursor: pointer;
  border: none;
  outline: 0;
  display: inline-block;
  line-height: 38px;
  height: 38px;
  transition: background-color 0.2s ease;
}
button:hover, .button:hover {
  background-color: var(--secondary-color);
}
.button-delete {
  background-color: var(--button-del-bg-color);
}
.button-delete:hover {
  background-color: var(--button-del-bg-color-h);
}
.button-neutral {
  background-color: var(--button-neu-bg-color);
}
.button-neutral:hover {
  background-color: var(--button-neu-bg-color-h);
}
.button-margin-right {
  margin-right: 10px;
}
.button-margin-left {
  margin-left: 10px;
}
select {
  background: var(--input-bg-color);
  padding: 9px;
  border-radius: 3px;
  border: 1px solid var(--input-border-color);
  outline: 0;
  color: var(--input-color);
  display: block;
  margin-bottom: 10px;
  max-width: 420px;
  width: 100%;
}
img {
  border: 0;
}
.row {
  width: 100%;
  margin: 0 auto;
  max-width: 1020px;
  box-sizing: border-box;
  padding: 0 10px;
  overflow: visible;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.divider {
  height: 1px;
  background: var(--divider-bg-color);
  margin: 5px 0;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--alt-bg-color);
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-content {
  margin: 0 auto;
  max-width: 1020px;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.header-col-content {
  flex: 1;
}
.header-col-menu {
  margin-left: 10px;
  position: relative;
}
.logo-link {
  text-decoration: none;
  display: block;
  padding: 8px 0;
}
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.header-icon {
  width: 32px;
  height: 50px;
  cursor: pointer;
  display: block;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon-menu {
  background-image: url('/images/icons/menu.svg');
  filter: invert(var(--icon-bg-color));
}
.icon-menu:hover {
  filter: invert(var(--icon-bg-color-h));
}
.header-menu-el {
  position: relative;
}
.menu {
  display: none;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  width: 200px;
  z-index: 1001;
  background: var(--alt-bg-color-h);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.menu.menu-collapsed {
  display: block;
}
.menu-content {
  width: 100%;
}
.menu-lang-list {
  max-height: 220px;
  overflow-y: auto;
}
.menu a, .menu-title {
  width: 100%;
  padding: 0 14px;
  box-sizing: border-box;
  line-height: 44px;
  display: block;
  color: var(--url-color);
  border-bottom: 1px solid var(--divider-bg-color);
}
.menu a:hover {
  background: var(--alt-bg-color-a);
  color: var(--url-color-h);
}
.menu-title {
  background: var(--alt-bg-color-a);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 32px;
}
.search-content {
  box-sizing: border-box;
  position: relative;
  margin: 7px 10px;
  max-width: 400px;
  width: 100%;
}
.search-container {
  position: relative;
}
input.search-input {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  max-width: none;
  padding: 8px 42px 8px 12px;
  margin-bottom: 0;
  height: 36px;
  background: var(--input-bg-color-alt);
  border-color: var(--input-border-color);
  border-radius: 18px;
}
.search-button {
  background-image: url('/images/icons/search.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  background-size: 18px;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  cursor: pointer;
  position: absolute;
  right: 4px;
  top: 4px;
  border: none;
  transition: background-color 0.2s;
}
.search-button:hover {
  background-color: var(--secondary-color);
}
.search-list {
  max-width: 400px;
  background-color: var(--alt-bg-color-h);
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  overflow: auto;
  z-index: 1002;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.search-list-title {
  background: var(--alt-bg-color-a);
  padding: 8px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-list-item {
  width: 100%;
  padding: 0 14px;
  box-sizing: border-box;
  background: var(--alt-bg-color-h);
  line-height: 44px;
  word-wrap: break-word;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid var(--divider-bg-color);
  color: var(--url-color);
}
.search-list-item:hover {
  background: var(--alt-bg-color-a);
  color: var(--url-color-h);
}
.search-list-country {
  font-size: 11px;
  color: var(--neutral-color);
  margin-left: 5px;
}
.geo-bar {
  background: var(--primary-color);
  color: white;
  padding: 6px 0;
}
.geo-bar .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.geo-text {
  font-size: 13px;
}
.geo-accept, .geo-decline {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 2px 10px;
  border-radius: 3px;
  cursor: pointer;
  height: auto;
  line-height: 22px;
  font-size: 13px;
}
.geo-accept:hover {
  background: rgba(255,255,255,0.35);
}
.geo-decline:hover {
  background: rgba(255,255,255,0.15);
}
.content {
  background: var(--background-color);
  box-sizing: border-box;
}
.content-home {
  padding: 10px 0;
}
.loading-container {
  text-align: center;
  padding: 60px 20px;
  color: var(--neutral-color);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--alt-bg-color-h);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 15px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.banner {
  width: 100%;
  padding: 10px 0;
  color: #fff;
}
.banner .row {
  display: flex;
  align-items: center;
}
.banner-info {
  background: var(--banner-info-bg);
}
.banner-warning {
  background: var(--banner-warning-bg);
}
.banner-error {
  background: var(--banner-error-bg);
}
.weather-now {
  position: relative;
  padding: 25px 20px;
  background-color: var(--primary-color);
  color: var(--wn-color);
  overflow: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}
.wn-title {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.wn-location {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.wn-location a {
  color: var(--wn-color);
}
.wn-box {
  width: 33.33333%;
  float: left;
  margin-top: 10px;
}
.wn-temperature {
  font-size: 56px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wn-conditions {
  font-size: 14px;
  line-height: 26px;
}
.wn-box-condition-row {
  width: 100%;
  overflow: auto;
  padding-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wn-box-condition-row img, .wf-conditions img {
  width: 18px;
  height: 18px;
  filter: var(--wn-img);
  flex-shrink: 0;
}
.wn-icon {
  width: 50px;
  height: 50px;
  filter: var(--wn-img);
}
.weather-now img {
  filter: var(--wn-img);
}
.weather-forecast img {
  filter: var(--wf-img);
}
.unit-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3px;
}
.unit-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: 16px;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  height: auto;
  line-height: 22px;
  transition: all 0.2s;
}
.unit-btn:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}
.unit-btn-active {
  background: rgba(255,255,255,0.9) !important;
  color: var(--primary-color) !important;
}
.weather-forecast, .latest-searches, .weather-evolution, .weather-info, .weather-map, .weather-photo {
  background: var(--alt-bg-color);
  padding: 15px 20px;
  overflow: auto;
  margin-top: 0;
}
.wf-title, .ls-title, .we-title, .wi-title, .wm-title, .wp-title {
  font-size: 18px;
  font-weight: 300;
  padding: 5px 0 10px;
  color: var(--alt-color);
}
.wf-day-wrapper {
  display: block;
  width: 100%;
  margin: 8px 0 0 0;
}
.wf-list {
  background: var(--background-color);
  border-radius: 6px;
  width: 100%;
  padding: 12px;
  margin: 0;
  box-sizing: border-box;
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: background-color 0.15s;
}
.wf-list:hover {
  background-color: var(--wf-list-h);
}
.wf-list-col {
  flex: 1;
}
.wf-date {
  flex: 1.2;
}
.wf-conditions {
  flex: 1.5;
}
.wf-temp-icon {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wf-day {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 3px;
  color: var(--alt-color);
}
.wf-date-text {
  color: var(--neutral-color);
  font-size: 12px;
}
.wf-condition-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}
.wf-conditions img {
  width: 16px;
  height: 16px;
  margin: 0;
  filter: var(--wf-img);
}
.wf-icon-img {
  width: 44px;
  height: 44px;
  filter: var(--wf-img);
}
.wf-temp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.wf-temp-max {
  font-size: 28px;
  font-weight: 300;
  color: var(--alt-color);
}
.wf-temp-min {
  font-size: 16px;
  color: var(--min-temp);
}
.wf-temp-arrow {
  font-size: 10px;
  margin-right: 2px;
  vertical-align: middle;
}
.wf-temp-arrow-max {
  color: #e84831;
}
.wf-temp-arrow-min {
  color: #5a7fff;
}
.wf-list-clickable {
  cursor: pointer;
  user-select: none;
  position: relative;
}
.wf-list-clickable:hover {
  background-color: var(--wf-list-h);
}
.wf-list-expanded {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--wf-list-h);
}
.wf-toggle-icon {
  font-size: 10px;
  color: var(--neutral-color);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.wf-hourly {
  background: var(--alt-bg-color-h);
  border-radius: 0 0 6px 6px;
  margin-top: 0;
  border-top: 1px solid var(--divider-bg-color);
  overflow: hidden;
}
.wf-hourly-scroll {
  display: flex;
  overflow-x: auto;
  padding: 12px 8px;
  gap: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--divider-bg-color) transparent;
}
.wf-hourly-scroll::-webkit-scrollbar {
  height: 4px;
}
.wf-hourly-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.wf-hourly-scroll::-webkit-scrollbar-thumb {
  background: var(--divider-bg-color);
  border-radius: 2px;
}
.wf-hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: var(--background-color);
  border-radius: 8px;
  min-width: 58px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.wf-hour:hover {
  background: var(--alt-bg-color-a);
}
.wf-hour-time {
  font-size: 11px;
  color: var(--neutral-color);
  font-weight: 600;
}
.wf-hour-icon {
  width: 28px;
  height: 28px;
  filter: var(--wf-img);
}
.wf-hour-temp {
  font-size: 14px;
  font-weight: 600;
  color: var(--alt-color);
}
.wf-hour-precip {
  font-size: 10px;
  color: #5a7fff;
  white-space: nowrap;
}
.wf-hour-wind {
  font-size: 10px;
  color: var(--neutral-color);
  white-space: nowrap;
}
.wf-hour-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  width: 100%;
}
.wf-hourly-label {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px 2px;
  letter-spacing: 0.4px;
  color: var(--neutral-color);
}
.wf-hourly-label-night {
  background: linear-gradient(135deg, #1a1a3e 0%, #2d2d5e 100%);
  color: #aab4d4;
  padding: 5px 12px;
}
.wf-hourly-label-day {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4ecfb 100%);
  color: #4a7fa5;
  padding: 5px 12px;
}
.dark .wf-hourly-label-day {
  background: linear-gradient(135deg, #0a2a40 0%, #0d3550 100%);
  color: #6aaecc;
}
.wf-hour-night {
  background: rgba(20, 20, 60, 0.08) !important;
}
.dark .wf-hour-night {
  background: rgba(10, 10, 40, 0.4) !important;
}
.wi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wi-item {
  background: var(--background-color);
  border-radius: 6px;
  font-size: 13px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wi-icon img {
  width: 40px;
  height: 40px;
  filter: var(--wf-img);
}
.wi-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neutral-color);
  margin-bottom: 4px;
}
.wi-value {
  font-size: 20px;
  font-weight: 300;
  color: var(--alt-color);
}
.map-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: var(--alt-bg-color-h);
}
.tkt-select-bar {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--alt-color);
  background: var(--background-color);
  border: 1px solid var(--divider-bg-color);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  outline: none;
  padding: 8px 12px;
  cursor: pointer;
  display: block;
  margin: 0;
  height: 36px;
}
.location-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.wp-credit {
  text-align: right;
  margin-top: 5px;
  color: var(--neutral-color);
}
.chart-container {
  background: var(--background-color);
  border-radius: 6px;
  overflow: auto;
  padding: 10px;
}
.chart-title {
  font-size: 13px;
  text-align: center;
  padding: 5px 0 10px;
  color: var(--neutral-color);
}
.chart-legends {
  display: flex;
  gap: 20px;
  padding: 5px 10px 5px 50px;
}
.chart-legend {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-min {
  background: var(--graph-min-color);
}
.legend-max {
  background: var(--graph-max-color);
}
.legend-name {
  font-size: 12px;
  color: var(--neutral-color);
}
#temp-chart {
  width: 100%;
  height: 200px;
  position: relative;
}
.latest-searches .button {
  margin-bottom: 8px;
  text-transform: capitalize;
  word-break: break-all;
  overflow: hidden;
  font-size: 13px;
  border-radius: 20px;
  height: auto;
  line-height: 32px;
  padding: 0 14px;
}
.page-header {
  background: var(--alt-bg-color);
  color: var(--alt-color);
  padding: 20px 0;
  margin-bottom: 10px;
}
.page-title {
  font-size: 22px;
  font-weight: 300;
}
.page-content {
  padding: 20px 0;
}
.content-admin .section {
  line-height: 28px;
  margin-bottom: 5px;
}
.notification-box {
  padding: 12px;
  position: relative;
  color: var(--notifications-color);
  border-radius: 4px;
  margin-bottom: 10px;
}
.notification-box-error {
  background: var(--notifications-error);
}
.notification-box-success {
  background: var(--notifications-success);
}
.notification-box-info {
  background: var(--notifications-info);
}
.login-input {
  max-width: 300px;
}
.footer {
  background: var(--alt-bg-color);
  padding: 12px 0;
  color: var(--alt-color);
  border-top: 1px solid var(--divider-bg-color);
}
.footer-content {
  max-width: 1020px;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
}
.footer-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-bottom: 5px;
}
.footer-element {
  line-height: 24px;
  font-size: 12px;
}
.footer-info {
  color: var(--neutral-color);
  font-size: 12px;
}
#loading-bar {
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 500ms ease-out, opacity 400ms linear;
}
.error-header {
  background: var(--primary-color);
  padding: 20px;
  color: #fff;
  margin-top: 10px;
  border-radius: 5px;
}
.error-title {
  font-size: 18px;
}
::selection {
  background: #0072CE;
  color: #fff;
}
@media (max-width: 768px) {
  .wn-box {
    width: 100%;
  }
  .wn-temperature {
    font-size: 42px;
  }
  .wf-list {
    flex-wrap: wrap;
  }
  .wf-list-col {
    width: 50%;
    flex: auto;
  }
  .wf-temp-icon {
    width: 100%;
    margin-top: 10px;
  }
  .wi-content {
    grid-template-columns: 1fr;
  }
  .search-content {
    margin: 7px 5px;
  }
  .menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 50px;
    border-radius: 0;
  }
  .chart-legends {
    padding: 5px;
  }
}
@media (max-width: 480px) {
  .wf-list-col {
    width: 100%;
  }
  .logo-text {
    font-size: 16px;
  }
  h3 {
    font-size: 18px;
  }
}
.weather-satellite {
  background: var(--alt-bg-color);
  padding: 15px 20px;
  overflow: hidden;
}
.ws-title {
  font-size: 18px;
  font-weight: 300;
  padding: 5px 0 12px;
  color: var(--alt-color);
}
.ws-image {
  width: 100%;
  border-radius: 6px;
  display: block;
  background: var(--alt-bg-color-h);
}
.ws-credit {
  text-align: right;
  font-size: 11px;
  color: var(--neutral-color);
  margin-top: 4px;
}
.weather-webcam {
  background: var(--alt-bg-color);
  padding: 15px 20px;
  overflow: hidden;
}
.ww-title {
  font-size: 18px;
  font-weight: 300;
  padding: 5px 0 12px;
  color: var(--alt-color);
}
.ww-city {
  font-size: 14px;
  color: var(--neutral-color);
}
.ww-iframe-wrap {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.earthcam-iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  border-radius: 6px;
}
.ww-live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(220, 30, 30, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 10;
}
@media (max-width: 768px) {
  .earthcam-iframe {
    height: 250px;
  }
}
.mwm-inner {
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px 4px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  position: relative;
}
.mwm-inner::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--primary-color);
  border-bottom: 0;
}
.mwm-img {
  width: 28px;
  height: 28px;
  filter: invert(100%);
}
.mwm-temp {
  font-size: 14px;
  letter-spacing: -0.5px;
}
.weather-leaflet-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.weather-leaflet-popup .leaflet-popup-content {
  margin: 0;
  width: min(220px, 70vw) !important;
}
.weather-leaflet-popup .leaflet-popup-tip-container {
  margin-top: -1px;
}
.map-weather-popup {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #444;
}
.mwp-header {
  background: var(--primary-color, #0072CE);
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mwp-icon {
  width: 42px;
  height: 42px;
  filter: invert(100%);
  flex-shrink: 0;
}
.mwp-location {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  min-width: 0;
  word-break: break-word;
}
.mwp-temp {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
}
.mwp-condition {
  font-size: 11px;
  opacity: 0.85;
}
.mwp-divider {
  height: 1px;
  background: #eee;
  margin: 2px 0;
}
.mwp-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 12px;
  border-bottom: 1px solid #f5f5f5;
  gap: 8px;
}
.mwp-row:last-child {
  border-bottom: none;
}
.mwp-row span:first-child {
  color: #888;
}
.mwp-row span:last-child {
  font-weight: 600;
  text-align: right;
}
.wf-list, .wi-item, button, .button, a {
  transition: all 0.15s ease;
}
.weather-now {
  transition: background-image 0.3s ease;
}
.fixed {
  position: fixed;
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-outline-style: solid;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}
