.country-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.country-select .selected-option {
    padding: 8px 12px;
    border-radius: 10px;
    background: #E2ECFF;
    font-size: 16px;
}

.country-select .country-dropdown {
    position: absolute;
    top: 105%;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow: hidden;
    display: none;
    z-index: 999;
}

.country-select .country-dropdown.open {
    display: block;
}

#countrySearch {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #eee;
    outline: none;
}

#countryList {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

#countryList li {
    padding: 10px 12px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    font-size: 16px;
}

#countryList li:hover {
    background: #f7f7f7;
}
