.country-selector {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.flag-header {
    display: flex;
    align-items: center; /* wyśrodkowanie pionowe */
    gap: 3px;
}

.current-flag img {
    width: 20px;
    height: 14px;
}

.country-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    z-index: 1000;
}

.country-list.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .country-list {
        top: auto;
        bottom: 100%;
    }
}
.country-list li {
    display: flex;
    align-items: center;
    padding: 6px 10px;
}

.country-list li img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    object-fit: contain;
    display: inline-block;
}

.country-list li a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.country-list li a:hover {
    background-color: #f0f0f0;
}

.flag-dropdown img {
  width: 12px;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Obrót strzałki o 180 stopni po rozwinięciu */
.country-selector.open .flag-dropdown img {
  transform: rotate(180deg);
}