.visitor-weather {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f0f8ff;
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    gap: 15px;
}

.visitor-weather h3 {
    margin: 0;
    color: #0077b6;
    flex: 1 1 200px;
    font-size: 1.2rem;
}

.visitor-weather ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    flex: 2 1 300px;
}

.visitor-weather ul li {
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .visitor-weather {
        flex-direction: column;
        align-items: flex-start;
    }
    .visitor-weather ul {
        flex-direction: column;
        gap: 8px;
    }
}
