.world-clock-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each row (default desktop layout) */
.world-clock-row {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; /* allow wrapping if needed */
}

/* Each clock block */
.world-clock {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #080808a8;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    min-width: 200px;
    white-space: nowrap;
    flex: 1 1 auto; /* let blocks resize */
}

/* Flag icon */
.world-clock img {
    width: 28px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

/* City name */
.world-clock strong {
    margin-right: 5px;
    /*color: #444;*/
    font-family: "Urbanist", Sans-serif;
}

/* Time highlight */
.world-clock span {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    /*background: #ffffff;*/
    padding: 3px 6px;
    border-radius: 4px;
}

/* ✅ Responsive: stack clocks on smaller screens */
@media (max-width: 768px) {
    .world-clock-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .world-clock {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ✅ Responsive: 2-column grid for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .world-clock-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
