/* Header section styles */
.header {
    padding: 15px 10px;
}

h1 {
    font-size: 18px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.search-bar {
    width: 100%;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background-color: #333;
    color: white;
    margin-bottom: 15px;
}

/* City thumbnails section styles */
.cities-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 15px;
    width:95%;
    overflow:auto;
    scrollbar-width: none; /* Hide scrollbar */
}

.city-item {
    flex: 0 0 auto;
    width: 250px;
    text-align: center;
}

.city-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 5px;
}

.city-image img{
    width: 100%;
    height:100%;
    
}


.city-name {
    font-size: 12px;
    color: white;
}

.see-all {
    font-size: 11px;
    color: #aaa;
}
