.cities-container {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-color1);
}
.city-group {
    padding: 15px;
    min-width: 350px;
}
.city-group h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
.city-group ul {
    list-style: none;
    padding: 0;
}
.city-group li {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.city-name {
    text-decoration: none;
    color: var(--primary);
}
.city-name:hover {
    text-decoration: underline;
}
.cities-weather {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    width: 70px;
}
.cities-weather img {
    width: 25px;
    height: 25px;
}
.dots {
    flex-grow: 1;
    height: 1px;
    margin: 10px 5px 0;
    background: repeating-linear-gradient(
            to right,
            rgba(128, 128, 128, 0.5),
            rgba(128, 128, 128, 0.5) 1.5px,
            transparent 1.5px,
            transparent 4px
    );
}