/*
 Theme Name:   Sway Child
 Template:     sway
 Version:      1.0.0
*/

/* ── Remove Astra's default top bar ── */
/* Container styling for countries alignment */
.topbar-countries {
    display: inline-flex;
    align-items: center;
    gap: 15px; /* Space between the two countries */
    margin-left: 10px;
}

/* Individual country item layout */
.country-item {
    display: flex;
    align-items: center;
    gap: 6px; /* Space between the flag and the text name */
}

/* Force flag images to behave and align perfectly inside the line height */
.topbar-flag {
    display: inline-block;
    height: auto;
    width: 18px; /* Compact width for topbar */
    vertical-align: middle;
    border-radius: 2px; /* Slight rounding for a premium modern look */
    box-shadow: 0 1px 2px rgba(0,0,0,0.15); /* Soft border frame */
}

.country-name {
    font-size: 13px;
    font-weight: 500;
}