.search-control{
    background-color : white;
    padding : 5px;
    border-radius : 4px;
    box-shadow : 0 1px 5px rgba(0,0,0,0.4);
    width : 300px;
    margin : 10px;
}

.search-control form{
    display: flex;
}

.city-search{
    flex : 1;
    padding : 8px;
    border-radius : 4px 0 0 4px;
    border : 1px solid #ccc;
    border-right : none;
}

.submit-search{
    padding: 8px 12px;
    background-color: #4a89dc;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.logo-control{
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-control img{
    width: 100px;
    height: auto;
}

.logo-attribution{
    font-size: 14px;
    color: #000;
    margin-top: 3px;
    text-align: center;
    font-style: italic;
    font-weight: italic;
}