  
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
        background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
        color: white;
        overflow-x: hidden;
      }

      .app-container {
        display: flex;
        min-height: 100vh;
      }

      /* Sidebar Styles */
      .sidebar {
        width: 200px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        transition: width 0.3s ease;
        position: relative;
        z-index: 1000;
      }

      .sidebar.collapsed {
        width: 60px;
      }

      .sidebar-header {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .logo {
        font-size: 24px;
        font-weight: bold;
        color: white;
        text-decoration: none;
      }

      .logo-subtitle {
        font-size: 12px;
        opacity: 0.7;
        margin-top: 2px;
      }

      .sidebar.collapsed .logo-subtitle {
        display: none;
      }

      .sidebar.collapsed .logo {
        font-size: 18px;
      }

      .nav-menu {
        list-style: none;
        padding: 20px 0;
      }

      .nav-item {
        margin-bottom: 5px;
      }

      .nav-link {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
      }

      .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        color: white;
      }

      .nav-icon {
        width: 20px;
        height: 20px;
        margin-right: 15px;
        flex-shrink: 0;
      }

      .sidebar.collapsed .nav-link {
        padding: 12px;
        justify-content: center;
      }

      .sidebar.collapsed .nav-icon {
        margin-right: 0;
      }

      .sidebar.collapsed .nav-text {
        display: none;
      }

      .collapse-btn {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .collapse-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
      }

      .sidebar.collapsed .collapse-btn {
        left: 50%;
        transform: translateX(-50%);
      }

      /* Main Content */
      .main-content {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
      }

      .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
      }

      .search-container {
        flex: 1;
        max-width: 400px;
        margin: 0 20px;
      }

      .search-input {
        width: 100%;
        padding: 12px 20px;
        border: none;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        font-size: 14px;
        margin-left: 15px;
      }

      .search-input::placeholder {
        color: #666;
      }

      .header-actions {
        display: flex;
        gap: 15px;
      }

      .header-btn {
        background: rgb(255, 255, 255);
        border: none;
        color: white;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: background 0.3s ease;
      }

      .header-btn:hover {
        background: rgb(255, 255, 255);
      }

      .weather-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
      }

      .weather-title {
        font-size: 48px;
        font-weight: 300;
        margin-bottom: 5px;
      }

      .weather-location {
        font-size: 14px;
        opacity: 0.8;
      }

      .current-temp {
        text-align: right;
      }

      .temp-value {
        font-size: 72px;
        font-weight: 300;
        line-height: 1;
      }

      .temp-time {
        font-size: 14px;
        opacity: 0.8;
      }

      /* Weather Forecast */
      .forecast-container {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 30px;
      }

      .forecast-days {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        margin-bottom: 20px;
      }

      .day-card {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        position: relative;
      }

      .day-name {
        font-weight: bold;
        margin-bottom: 5px;
      }

      .day-date {
        font-size: 12px;
        opacity: 0.7;
        margin-bottom: 15px;
      }

      .weather-icon {
        width: 50px;
        height: 50px;
        margin: 10px auto;
        background: #87ceeb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
      }

      .temp-high {
        background: #ffd700;
        color: #333;
        padding: 4px 8px;
        border-radius: 15px;
        font-weight: bold;
        margin: 5px 0;
        display: inline-block;
      }

      .temp-low {
        background: #90ee90;
        color: #333;
        padding: 4px 8px;
        border-radius: 15px;
        font-weight: bold;
        margin: 5px 0;
        display: inline-block;
      }

      .weather-details {
        font-size: 12px;
        margin-top: 10px;
      }

      .weather-details div {
        margin: 2px 0;
      }

      /* Hourly Forecast */
      .hourly-forecast {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
      }

      .hourly-title {
        font-size: 24px;
        margin-bottom: 20px;
      }

      .hourly-container {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
      }

      .hour-item {
        flex-shrink: 0;
        text-align: center;
        min-width: 80px;
      }

      .hour-time {
        font-size: 12px;
        margin-bottom: 10px;
      }

      .hour-icon {
        width: 40px;
        height: 40px;
        background: #87ceeb;
        border-radius: 50%;
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }

      .hour-temp {
        background: #90ee90;
        color: #333;
        padding: 4px 8px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: bold;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .sidebar {
          position: fixed;
          left: -200px;
          height: 100vh;
          z-index: 1000;
        }

        .sidebar.open {
          left: 0;
        }

        .sidebar.collapsed {
          left: -60px;
        }

        .sidebar.collapsed.open {
          left: 0;
        }

        .main-content {
          margin-left: 0;
        }

        .weather-header {
          flex-direction: column;
          text-align: center;
          gap: 20px;
        }

        .forecast-days {
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }

        .temp-value {
          font-size: 48px;
        }

        .weather-title {
          font-size: 32px;
        }
      }

      .mobile-toggle {
        display: none;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .mobile-toggle {
          display: block;
        }
      }

      .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
      }

      @media (max-width: 768px) {
        .overlay.active {
          display: block;
        }
      }

      .weather-container {
        max-width: 100%;
        margin: 0 auto;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .weather-header {
        background: linear-gradient(135deg, #4a6fa5 0%, #5a7fb5 100%);
        color: white;
        padding: 20px;
      }

      .weather-header h1 {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 15px;
      }

      .time-slots {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
        text-align: center;
      }

      .time-slot {
        font-size: 14px;
        font-weight: 500;
      }

      .time-slot sup {
        font-size: 10px;
      }

      .weather-icons-row {
        background: linear-gradient(135deg, #4a6fa5 0%, #5a7fb5 100%);
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        padding: 15px 20px;
        text-align: center;
      }

      .weather-icon {
        font-size: 32px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      }

      .weather-data-table {
        background: white;
      }

      .data-row {
        display: grid;
        grid-template-columns: 200px 1fr;
        border-bottom: 1px solid #e0e0e0;
        min-height: 50px;
      }

      .row-label {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        background: #f8f9fa;
        border-right: 1px solid #e0e0e0;
        font-size: 14px;
        color: #333;
      }

      .row-label .icon {
        margin-right: 8px;
        font-size: 16px;
      }

      .row-label .sublabel {
        font-size: 11px;
        color: #666;
        margin-left: 24px;
        margin-top: 2px;
      }

      .info-icon {
        margin-left: 5px;
        font-size: 12px;
        color: #666;
      }

      .data-cells {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
      }

      .data-cell {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 8px;
        border-right: 1px solid #e0e0e0;
        font-size: 13px;
        font-weight: 500;
        position: relative;
      }

      .data-cell:last-child {
        border-right: none;
      }

      /* Temperature Row Styling */
      .temperature-row .data-cell {
        color: white;
        font-weight: bold;
        position: relative;
      }

      .temp-cell[data-temp="12"] {
        background: #4caf50;
      }
      .temp-cell[data-temp="14"] {
        background: #8bc34a;
      }
      .temp-cell[data-temp="17"] {
        background: #cddc39;
      }
      .temp-cell[data-temp="19"] {
        background: #ffeb3b;
      }
      .temp-cell[data-temp="20"] {
        background: #ffc107;
      }
      .temp-cell[data-temp="13"] {
        background: #66bb6a;
      }

      /* Wind Direction Styling */
      .wind-cell {
        font-family: monospace;
        font-size: 12px;
      }

      /* Precipitation Probability Row */
      .precipitation-prob-row .data-cell {
        position: relative;
        color: #1976d2;
        font-weight: bold;
      }

      .prob-cell::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #2196f3;
        opacity: 0.3;
      }

      .prob-cell[data-prob="10"]::after {
        height: 10%;
      }
      .prob-cell[data-prob="35"]::after {
        height: 35%;
      }
      .prob-cell[data-prob="50"]::after {
        height: 50%;
      }
      .prob-cell[data-prob="25"]::after {
        height: 25%;
      }
      .prob-cell[data-prob="20"]::after {
        height: 20%;
      }

      /* Hourly Precipitation Bars */
      .precip-bar-cell {
        position: relative;
      }

      .precip-bar-cell::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        background: #2196f3;
        border-radius: 2px 2px 0 0;
      }

      .precip-bar-cell[data-precip="0"]::after {
        height: 0;
      }
      .precip-bar-cell[data-precip="1"]::after {
        height: 15%;
      }
      .precip-bar-cell[data-precip="2"]::after {
        height: 30%;
      }
      .precip-bar-cell[data-precip="3"]::after {
        height: 45%;
      }

      /* Radar Circles */
      .radar-cell {
        padding: 8px;
      }

      .radar-circle {
        width: 40px;
        height: 40px;
        border: 2px solid #ccc;
        border-radius: 50%;
        position: relative;
        margin: 0 auto;
        background: #f5f5f5;
      }

      .radar-circle.light-rain {
        background: rgba(33, 150, 243, 0.2);
        border-color: #2196f3;
      }

      .radar-center {
        width: 4px;
        height: 4px;
        background: #333;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .radar-circle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        border: 1px solid #ddd;
        border-radius: 50%;
        transform: translate(-50%, -50%);
      }

      /* Hourly View Button */
      .hourly-view-container {
        padding: 20px;
        text-align: center;
        background: #f8f9fa;
      }

      .hourly-view-btn {
        background: #1976d2;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .hourly-view-btn:hover {
        background: #1565c0;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .weather-container {
          margin: 0;
          border-radius: 0;
        }

        .data-row {
          grid-template-columns: 150px 1fr;
        }

        .row-label {
          padding: 8px 12px;
          font-size: 12px;
        }

        .data-cell {
          padding: 8px 4px;
          font-size: 11px;
        }

        .weather-icon {
          font-size: 24px;
        }

        .time-slot {
          font-size: 12px;
        }
      }

      @media (max-width: 480px) {
        .data-row {
          grid-template-columns: 120px 1fr;
        }

        .row-label {
          padding: 6px 8px;
          font-size: 11px;
        }

        .data-cell {
          padding: 6px 2px;
          font-size: 10px;
        }

        .radar-circle {
          width: 30px;
          height: 30px;
        }

        .weather-icon {
          font-size: 20px;
        }
      }

      .weather-report-container {
        max-width: 100%;
        margin: 10px auto;
        padding: 50px;
        
        min-height: 70vh;

      }

      .report-header {
        margin-bottom: 30px;
      }

      .report-header h1 {
        font-size: 24px;
        font-weight: 600;
       color: white;
        margin-bottom: 20px;
      }

      .weather-description {
        margin-bottom: 40px;
      }

      .weather-description p {
        font-size: 16px;
        line-height: 1.7;
        color: white;
        text-align: justify;
      }

      .weather-info-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        flex-wrap: wrap;
      }

      .sun-moon-boxes {
        display: flex;
        gap: 20px;
      }

      .sun-box {
        background: linear-gradient(
          135deg,
          #ff9500 0%,
          #ffb347 50%,
          #ffd700 100%
        );
        border-radius: 12px;
        padding: 20px;
        min-width: 120px;
        position: relative;
        box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
      }

      .moon-box {
        background: linear-gradient(
          135deg,
          #2c3e50 0%,
          #34495e 50%,
          #4a6741 100%
        );
        border-radius: 12px;
        padding: 20px;
        min-width: 120px;
        color: white;
        box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
      }

      .sun-icon {
        font-size: 32px;
        text-align: center;
        margin-bottom: 10px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      }

      .moon-icon {
        font-size: 32px;
        text-align: center;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      }

      .uv-badge {
        background: rgba(0, 0, 0, 0.2);
        color: white;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
      }

      .sun-times,
      .moon-times {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .time-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
      }

      .sun-box .time-item {
       color: white;
      }

      .moon-box .time-item {
        color: white;
      }

      .arrow {
        font-size: 12px;
        width: 12px;
        text-align: center;
      }

      .time {
        font-family: "Courier New", monospace;
        font-weight: 600;
      }

      .additional-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-self: center;
      }

      .info-item {
        font-size: 14px;
        color: white;
      }

      .info-item strong {
        color: white;
        font-weight: 600;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .weather-report-container {
          padding: 15px;
        }

        .report-header h1 {
          font-size: 20px;
        }

        .weather-description p {
          font-size: 15px;
        }

        .weather-info-section {
          flex-direction: column;
          align-items: center;
          gap: 20px;
        }

        .sun-moon-boxes {
          justify-content: center;
        }

        .additional-info {
          align-self: stretch;
          text-align: center;
        }
      }

      @media (max-width: 480px) {
        .sun-moon-boxes {
          flex-direction: column;
          align-items: center;
          width: 100%;
        }

        .sun-box,
        .moon-box {
          width: 100%;
          max-width: 200px;
        }

        .weather-description p {
          font-size: 14px;
          text-align: left;
        }
      }

      /* Animation Effects */
      .sun-box {
        animation: sunGlow 3s ease-in-out infinite alternate;
      }

      .moon-box {
        animation: moonGlow 4s ease-in-out infinite alternate;
      }

      @keyframes sunGlow {
        0% {
          box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
        }
        100% {
          box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
        }
      }

      @keyframes moonGlow {
        0% {
          box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
        }
        100% {
          box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
        }
      }

      .sun-icon,
      .moon-icon {
        transition: transform 0.3s ease;
      }

      .sun-box:hover .sun-icon,
      .moon-box:hover .moon-icon {
        transform: scale(1.1);
      }
      .radar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.radar-header {
    margin-bottom: 20px;
}

.radar-header h1 {
    font-size: 24px;
    font-weight: 400;
    color: #2c3e50;
}

.map-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 50%, #c8e6c8 100%);
    overflow: hidden;
}

.base-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(139, 195, 74, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(200, 230, 200, 0.5) 0%, rgba(220, 240, 220, 0.3) 100%);
}

.city-label {
    position: absolute;
    font-size: 11px;
    color: #444;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.precipitation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.rain-area {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: rainPulse 3s ease-in-out infinite;
}

.light-rain {
    background: radial-gradient(circle, rgba(100, 181, 246, 0.6) 0%, rgba(100, 181, 246, 0.3) 70%, transparent 100%);
}

.moderate-rain {
    background: radial-gradient(circle, rgba(33, 150, 243, 0.8) 0%, rgba(33, 150, 243, 0.4) 70%, transparent 100%);
}

@keyframes rainPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.time-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #2c3e50;
    color: white;
}

.time-slider-container {
    flex: 1;
    margin-right: 20px;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.time-label {
    font-size: 12px;
    color: #bdc3c7;
    cursor: pointer;
    transition: color 0.3s;
}

.time-label.active {
    color: #3498db;
    font-weight: bold;
}

.time-label:hover {
    color: white;
}

.time-slider {
    position: relative;
    height: 4px;
    background: #34495e;
    border-radius: 2px;
}

.slider-track {
    height: 100%;
    background: #34495e;
    border-radius: 2px;
}

.slider-thumb {
    position: absolute;
    top: -4px;
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    transition: left 0.3s ease;
}

.playback-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn, .play-btn {
    background: #34495e;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.nav-btn:hover, .play-btn:hover {
    background: #4a6741;
}

.play-btn {
    background: #3498db;
}

.play-btn:hover {
    background: #2980b9;
}

.time-period-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: #ecf0f1;
    border-top: 1px solid #bdc3c7;
}

.period-label {
    font-size: 12px;
    color: #7f8c8d;
    margin-right: 10px;
}

.period-btn {
    background: white;
    border: 1px solid #bdc3c7;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
}

.period-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.period-btn:hover:not(.active) {
    background: #f8f9fa;
    border-color: #95a5a6;
}

.legend-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 12px;
    border-radius: 2px;
}

.legend-text {
    font-size: 12px;
    color: #495057;
}

.nieselregen .legend-color { background: #81c784; }
.leicht .legend-color { background: #64b5f6; }
.moderat .legend-color { background: #2196f3; }
.stark .legend-color { background: #9c27b0; }
.sehr-schwer .legend-color { background: #ff5722; }
.hagel .legend-color { background: #ffeb3b; }

/* Responsive Design */
@media (max-width: 768px) {
    .radar-container {
        padding: 10px;
        margin: 0;
        border-radius: 0;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .time-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .time-slider-container {
        margin-right: 0;
        width: 100%;
    }
    
    .legend-container {
        gap: 10px;
    }
    
    .city-label {
        font-size: 10px;
    }
    
    .time-period-selector {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .radar-header h1 {
        font-size: 18px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .time-labels {
        font-size: 10px;
    }
    
    .legend-container {
        flex-direction: column;
        align-items: center;
    }
}

.weather-chart-container {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.location-info h1 {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.coordinates {
  font-size: 14px;
  color: #666;
}

.forecast-chart {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.day-headers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.day-header {
  padding: 12px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}

.day-header:last-child {
  border-right: none;
}

.day-header.weekend {
  background: #fff5f5;
}

.day-header.weekend .day-name {
  color: #e74c3c;
}

.day-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.day-date {
  font-size: 12px;
  color: #666;
}

.chart-area {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 60px;
  height: 150px;
  border-bottom: 1px solid #e0e0e0;
}

.y-axis-label {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  transform-origin: center;
}

.y-axis,
.y-axis-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 5px;
  font-size: 11px;
  color: #666;
  border-right: 1px solid #e0e0e0;
}

.y-axis-right {
  border-right: none;
  border-left: 1px solid #e0e0e0;
  text-align: right;
}

.chart-content {
  position: relative;
  overflow: hidden;
}

/* Temperature Chart Styles */
.temperature-chart {
  height: 200px;
}

.temp-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #ffeb3b 0%, #ffc107 20%, #ff9800 40%, #4caf50 60%, #2196f3 80%, #1976d2 100%);
  opacity: 0.3;
}

.weather-icons {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 40px;
}

.weather-icon {
  position: absolute;
  font-size: 24px;
  transform: translateX(-50%);
}

.temp-curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.temp-values {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.temp-max,
.temp-min {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 4px;
  border-radius: 3px;
  transform: translateX(-50%);
}

.temp-max {
  color: #d32f2f;
}

.temp-min {
  color: #1976d2;
}

.wind-icons {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.wind-icon {
  position: absolute;
  font-size: 16px;
  transform: translateX(-50%);
  opacity: 0.7;
}

/* Precipitation Chart Styles */
.precipitation-chart {
  height: 120px;
}

.precip-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.precip-area {
  position: absolute;
  bottom: 0;
  background: rgba(158, 158, 158, 0.4);
  border-radius: 2px 2px 0 0;
}

.precip-area.light {
  background: rgba(158, 158, 158, 0.3);
}

.precip-area.medium {
  background: rgba(97, 97, 97, 0.5);
}

.precip-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.precip-bar {
  position: absolute;
  bottom: 0;
  width: 4px;
  background: #2196f3;
  border-radius: 2px 2px 0 0;
}

/* Wind Chart Styles */
.wind-chart {
  height: 100px;
}

.wind-curves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wind-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wind-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
}

.wind-right {
  font-size: 10px;
  justify-content: center;
}

/* X-Axis */
.x-axis {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 10px;
  color: #666;
  border-top: 1px solid #e0e0e0;
  grid-column: 1 / -1;
}

.x-tick {
  text-align: center;
  min-width: 20px;
}

/* Legend */
.legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.legend-color {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}

.prob-10-25 {
  background: rgba(200, 200, 200, 0.5);
}
.prob-25-50 {
  background: rgba(158, 158, 158, 0.6);
}
.prob-50-75 {
  background: rgba(117, 117, 117, 0.7);
}
.prob-75-90 {
  background: rgba(76, 76, 76, 0.8);
}
.prob-90-100 {
  background: rgba(33, 33, 33, 0.9);
}

.legend-symbol {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.legend-symbol.niederschlag {
  color: #2196f3;
}

.legend-symbol.schauer {
  color: #81c784;
}

.last-update {
  text-align: center;
  font-size: 11px;
  color: #999;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .weather-chart-container {
    margin: 10px;
    padding: 15px;
  }

  .chart-header {
    flex-direction: column;
    gap: 10px;
  }

  .day-headers {
    font-size: 12px;
  }

  .chart-area {
    height: 120px;
  }

  .temperature-chart {
    height: 160px;
  }

  .legend {
    gap: 10px;
  }

  .legend-item {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .day-headers {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .day-header:nth-child(5) {
    grid-column: 1 / -1;
  }

  .weather-icon {
    font-size: 20px;
  }

  .temp-max,
  .temp-min {
    font-size: 10px;
  }
}
.weather-container {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.weather-header {
  margin-bottom: 30px;
}

.weather-header h1 {
  font-size: 20px;
  font-weight: 400;
  color: #2c3e50;
  margin: 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cities-column {
  display: flex;
  flex-direction: column;
}

.city-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  min-height: 50px;
}

.city-item:last-child {
  border-bottom: none;
}

.city-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  width: 20px;
  height: 13px;
  border: 1px solid #ddd;
  border-radius: 2px;
  flex-shrink: 0;
}

.city-link {
  color: #1976d2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.city-link:hover {
  color: #1565c0;
  text-decoration: underline;
}

.weather-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.weather-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.temperature {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

/* Weather icon animations */
.weather-icon.sunny {
  animation: sunRotate 10s linear infinite;
}

.weather-icon.rainy {
  animation: rainBounce 2s ease-in-out infinite;
}

@keyframes sunRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rainBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Hover effects */
.city-item {
  transition: background-color 0.3s ease;
}

.city-item:hover {
  background-color: #f8f9fa;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .weather-container {
    margin: 10px;
    padding: 15px;
  }

  .weather-header h1 {
    font-size: 18px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .city-item {
    padding: 15px 0;
  }

  .city-link {
    font-size: 15px;
  }

  .temperature {
    font-size: 15px;
    min-width: 90px;
  }

  .weather-icon {
    font-size: 22px;
    width: 26px;
  }
}

@media (max-width: 480px) {
  .weather-container {
    margin: 5px;
    padding: 10px;
  }

  .weather-header h1 {
    font-size: 16px;
    line-height: 1.3;
  }

  .city-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
  }

  .weather-info {
    align-self: flex-end;
  }

  .city-link {
    font-size: 14px;
  }

  .temperature {
    font-size: 14px;
  }
}

/* Loading animation */
.city-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.city-item:nth-child(1) {
  animation-delay: 0.1s;
}
.city-item:nth-child(2) {
  animation-delay: 0.2s;
}
.city-item:nth-child(3) {
  animation-delay: 0.3s;
}
.city-item:nth-child(4) {
  animation-delay: 0.4s;
}
.city-item:nth-child(5) {
  animation-delay: 0.5s;
}
.city-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus styles for accessibility */
.city-link:focus {
  outline: 2px solid #1976d2;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Print styles */
@media print {
  .weather-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .city-link {
    color: #000;
    text-decoration: none;
  }

  .weather-icon {
    filter: grayscale(100%);
  }
}
.meteoblue-footer {
  width: 100%;
  background-color: #e8e8e8;
  border-top: 1px solid #d0d0d0;
  padding: 40px 0 30px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-columns {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-column {
  min-width: 140px;
}

.column-header {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2c5282;
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 200px;
}

.logo-section {
  margin-bottom: 20px;
}

.meteoblue-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.logo-text {
  font-size: 28px;
  font-weight: 300;
  color: #2c5282;
  letter-spacing: -0.5px;
}

.logo-superscript {
  font-size: 12px;
  color: #2c5282;
  vertical-align: super;
  line-height: 1;
}

.company-tagline {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.copyright-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.copyright-text {
  font-size: 12px;
  color: #666;
}

.certificate-text {
  font-size: 12px;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  margin-top: 5px;
}

.bottom-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-link:hover {
  color: #2c5282;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-columns {
    gap: 40px;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .copyright-section {
    align-items: center;
  }

  .footer-bottom-links {
    align-items: center;
    flex-direction: row;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .meteoblue-footer {
    padding: 30px 0 20px 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column {
    min-width: auto;
  }

  .column-header {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .logo-text {
    font-size: 24px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 5px;
  }
}

/* Focus styles for accessibility */
.footer-links a:focus,
.bottom-link:focus {
  outline: 2px solid #2c5282;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Print styles */
@media print {
  .meteoblue-footer {
    background-color: white;
    border-top: 1px solid #000;
  }

  .footer-links a,
  .bottom-link {
    color: #000;
    text-decoration: none;
  }

  .logo-text,
  .logo-superscript {
    color: #000;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .meteoblue-footer {
    background-color: #f0f0f0;
    border-top: 2px solid #000;
  }

  .column-header {
    color: #000;
  }

  .footer-links a,
  .bottom-link {
    color: #000;
  }

  .footer-links a:hover,
  .bottom-link:hover {
    color: #0066cc;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .bottom-link {
    transition: none;
  }
}

 