﻿@import url("https://cdn.jsdelivr.net/npm/flag-icon-css/css/flag-icon.min.css");

.custom-select {
    position: relative;
    width: min-content;
    cursor: pointer;
    user-select: none;
}

.custom-select .selected {
    background: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-select .options {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

    .custom-select .options li {
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .custom-select .options li:hover {
            background: #f0f0f0;
        }