body {
    font-family: 'Inter', sans-serif;    
    background: #f4f6f9;
    margin: 0;
    padding: 20px;
    text-align: center;
    min-height: 100vh;
}

.weather-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr); /* 3 columns */
       gap: 16px;
       padding: 10px;
}

input {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 200px;
    margin-right: 20px;
}

button {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #0082c8;
    border-radius: 20px;
    width: 100px;
    background-color: #6eccff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}



#weather-container,
#timezone-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;

}



.weather-card:hover,
.timezone-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #e5e5e5;
}

.weather-widget {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #e5e5e5;
    border-radius: 10px; 
    width: 300px;
    height: 300px;
}