.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    background: #333331;
    border-radius: 50px;
    padding: 7.5px 16px;
    cursor: pointer;
    border: none;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.7) inset;
    box-sizing: border-box;
}

.custom-select-trigger .country-flag {
    display: flex;
    align-items: center;
}

.custom-select-trigger .selected-country-name {
    color: #ffffff;
    font-size: 16px;
    margin-left: 25px;
}

.custom-select-trigger .select-country-dropdown {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.select-country-dropdown .select-arrow {
    width: 10px;
    height: 5.5px;
}


.custom-select-wrapper.open .select-country-dropdown {
    transform: rotate(180deg);
    margin-top: -3px;
}

.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #333331;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.7) inset;
    display: none;
    z-index: 100;
    overflow: hidden;
    padding: 8px;
}

.custom-select-wrapper.open .custom-options {
    display: block;
}

.custom-option {
    padding: 4px 8px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: background 0.2s;
    box-sizing: border-box;
    border-radius: 8px;
}

.custom-option:hover {
    background: rgba(0, 236, 131, 0.1);
}


.custom-option .flag-icon {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .custom-select-trigger {
        height: 44px;
    }

    .custom-select-trigger .selected-country-name {
        font-size: 20px;
        margin-left: 10%;
    }
}

