
/* Custom Select CSS */
.custom-select-wrapper {
position: relative;
user-select: none;
width: 100%;
font-family: Arial, sans-serif;
}
.custom-select-trigger {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
font-size: 14px;
font-weight: 400;
color: #333;
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease;
}
.custom-select-trigger:hover {
border-color: #aaa;
}
.custom-options {
position: absolute;
display: block;
top: 100%;
left: 0;
right: 0;
border: 1px solid #ddd;
border-top: 0;
background: #fff;
transition: all 0.3s;
opacity: 0;
visibility: hidden;
pointer-events: none;
z-index: 100;
max-height: 300px;
overflow-y: auto;
border-radius: 0 0 5px 5px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.custom-select-wrapper.open .custom-options {
opacity: 1;
visibility: visible;
pointer-events: all;
}
.custom-select-wrapper.open .custom-select-trigger {
border-bottom: 1px solid #eee;
border-radius: 5px 5px 0 0;
}
.custom-option {
position: relative;
display: flex;
align-items: center;
padding: 10px;
font-size: 14px;
color: #333;
cursor: pointer;
transition: all 0.2s;
}
.custom-option:hover {
background-color: #f9f9f9;
color: #007bff;
}
.custom-option.selected {
background-color: #f0f8ff;
font-weight: bold;
}
.option-flag-img {
width: 20px;
height: 14px;
object-fit: cover;
margin-right: 10px;
border-radius: 2px;
box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.arrow-icon {
font-size: 10px;
color: #888;
}
.filter-common-container {
flex-direction: column !important;
}
