 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     color: white;
     min-height: 100vh;
     overflow-x: auto;
 }

 .header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 40px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 20px;
     font-weight: 600;
 }

 .cloud-icon {
     width: 42px;
     height: 24px;
     background: white;
     border-radius: 12px;
     position: relative;
 }

 .cloud-icon::before {
     content: '';
     position: absolute;
     width: 16px;
     height: 16px;
     background: white;
     border-radius: 50%;
     top: -8px;
     left: 8px;
 }

 .search-bar {
     background: rgba(255, 255, 255, 0.1);
     border: none;
     padding: 12px 20px;
     border-radius: 25px;
     color: white;
     font-size: 14px;
     width: 300px;
 }

 .search-bar::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }
 .search{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
 }
.search-icon{
    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
}
.search-icon:hover{
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

 .current-location {
     background: rgba(147, 51, 234, 0.8);
     padding: 12px 20px;
     border-radius: 25px;
     border: none;
     color: white;
     font-size: 14px;
     cursor: pointer;
 }

 .container {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 40px;
     padding: 40px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .left-panel {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .current-weather {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
     backdrop-filter: blur(10px);
 }

 .now-label {
     font-size: 18px;
     margin-bottom: 20px;
     opacity: 0.8;
 }

 .temperature-display {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 15px;
 }

 .temperature {
     font-size: 64px;
     font-weight: 300;
     line-height: 1;
 }

 .weather-icon {
     font-size: 48px;
 }

 .condition {
     font-size: 16px;
     margin-bottom: 20px;
     opacity: 0.9;
 }

 .location-info {
     display: flex;
     flex-direction: column;
     gap: 8px;
     opacity: 0.7;
     font-size: 14px;
 }

 .forecast {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
     backdrop-filter: blur(10px);
 }

 .forecast-title {
     font-size: 18px;
     margin-bottom: 20px;
 }

 .forecast-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .forecast-item:last-child {
     border-bottom: none;
 }

 .right-panel {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .highlights {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
     backdrop-filter: blur(10px);
 }

 .highlights-title {
     font-size: 18px;
     margin-bottom: 30px;
 }

 .metrics-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-bottom: 30px;
 }

 .metric {
     text-align: center;
 }

 .metric-label {
     font-size: 14px;
     opacity: 0.7;
     margin-bottom: 8px;
 }
.last-updated{
    margin-top: 10px;
    text-align: center;
}
.last-updated-date{
    font-size: 14px;
    opacity: 0.7;
}
.last-updated-time{
    font-size: 18px;
    font-weight: 600;
}
 .metric-value {
     font-size: 24px;
     font-weight: 600;
 }

 .metric-icon {
     font-size: 20px;
     margin-bottom: 8px;
 }

 .additional-metrics {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .hourly-forecast {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
     backdrop-filter: blur(10px);
 }

 .hourly-title {
     font-size: 18px;
     margin-bottom: 20px;
 }

 .hourly-grid {
     display: grid;
     grid-template-columns: repeat(8, 1fr);
     gap: 15px;
 }

 .hourly-item {
     text-align: center;
     padding: 15px 0;
 }

 .hourly-time {
     font-size: 12px;
     opacity: 0.7;
     margin-bottom: 10px;
 }

 .hourly-icon {
     font-size: 24px;
     margin: 10px 0;
 }

 .hourly-temp {
     font-size: 14px;
     font-weight: 600;
 }

 .good-badge {
     background: #10b981;
     padding: 4px 12px;
     border-radius: 12px;
     font-size: 12px;
     font-weight: 600;
 }

 @media (max-width: 1024px) {
     .header {
         padding: 25px 20px;
         flex-wrap: wrap;
         gap: 15px;
     }

     .search-bar {
         width: 250px;
     }
     .container {
         grid-template-columns: 1fr;
         padding: 20px;
     }

     .metrics-grid {
         grid-template-columns: 1fr;
     }

     .hourly-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 10px;
     }

     .additional-metrics {
         grid-template-columns: repeat(2, 1fr);
     }
     .hourly-forecast{
        display: none;
     }
 }
 .red{
        color: red;
 }
 .green{
        color: green;
 }
 .yellow{
        color: yellow;
 }