#current-weather {
 background-color: white;
 border-radius: 10px;
 padding: 20px;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 margin-bottom: 20px;
 display: none;
}

#search-container {
 display: flex;
 margin-bottom: 20px;
}

#city-input {
 flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    color: var(--awb-color2);
    border-radius: 0;
    background-color: var(--awb-color6);
    border: 1px solid var(--awb-color2);
    font-family: lato;
}

#search-btn {
 padding: 10px 20px;
 font-size: 16px;
 background-color: var(--awb-color2);
 color: white;
 border: none;
 cursor: pointer;
}

#error-message {
 color: red;
 margin-top: 10px;
}
#weather-info p {
    margin-bottom: 5px;
}

#city-input::placeholder {
    color: var(--awb-color2);
    opacity: 1;
}

.weather-app-inner {
    padding: 20px 15px;
    background-color: var(--awb-color6);
    color: var(--awb-color2);
    line-height: normal;
    max-width: 100%;
    border: 1px solid var(--awb-color2);
}
.weather-city svg path {
    fill: var(--awb-color2);
}

.weather-app-inner-bottom svg path {
    fill: var(--awb-color2);
}

p.weather-title {
    font-size: 55px;
	font-family: "Saturday Script";
    line-height: 1;
    font-weight: 700;
}

p.weather-date-full,.weather-city {
    font-size: 14px;
}

.weather-city {
    opacity: 0.7;
}

.weather-app-inner-top {
    margin-bottom: 20px;
}

.weather-app-inner-bottom {
    display: flex;
    flex-direction: column;
}

strong.weather-app-temp {
    font-size: 45px;
}

strong.temp-desc {
    font-size: 18px;
}
p.weather-city {
    display: flex;
    align-items: center;
}
.weather-city svg {
    width: 16px;
    height: 16px;
    margin-right: .25rem;
    display: inline;
}
.weather-app-inner-bottom svg {
    width: 64px;
    height: 64px;
    margin-bottom: .5rem;
}
#weather-app {
    position: relative;
}
#weather-app ul#dropdown {
    padding: 0;
    list-style: none;
    margin-top: 0;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);!;
    top: 51px;
}
#weather-app ul#dropdown li:hover {
    background-color: rgb(236 245 255);
    color: var(--awb-color2);
}