.weather-detail {
    padding-bottom: 100px;
}

.weather-detail .header {
    margin: 50px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fb;
}

.city-search {
    padding: 10px 20px;
    width: 100%;
}

.city-search .search-label {
    display: block;
    font-weight: 500;
    font-size: 16px;

}

.city-search .dropdown {
    width: 100%;
}

.city-search .dropdown-content {
    max-height: 300px;
    overflow: auto;
}

.city-search .dropdown-trigger {
    max-width: 500px;
    margin-top: 10px;
}

.city-search .dropdown-trigger {
    width: 100%;
}

.city-name {
    background-color: #f8f9fb;
    padding: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.city-name .icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.forecast-items {

}


.forecast-day-item {
    padding: 20px 0;
}


.forecast-date {
    padding-bottom: 20px;
    font-weight: bold
}

.table-wrapper {
    overflow-x: auto;
}


.weather-detail .table thead th {
    border-width: 0 0 1px;
    font-weight: 400;
}

.weather-detail .table td, .weather-detail .table th {
    /*padding: 8px 0;*/
}

.weather-condition img {
    height: 50px;
    width: 50px;
}


.error-message {
    display: flex;
    font-size: 20px;
    align-items: center;
    padding: 40px 20px;
}

.error-message .icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

