.filter {
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 20px;
}

.dropdown {
position: relative;
width: 190px;
line-height: 20px;
overflow: visible !important;
}

.selectBox {
display: flex;
justify-content: space-between;
align-items: center;
border: 1px solid #ccc;
border-radius: 6px;
padding: 8px 10px;
background: white;
cursor: pointer;
}

.options {
position: absolute;
top: 110%;
left: 0;
right: 0;
background: white;
border: 1px solid #ccc;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
display: none;
z-index: 100;
max-height: 500px;
overflow-y: auto;
}

.options label {
display: block;
padding: 8px 10px;
cursor: pointer;
}

.options label:hover {
background-color: #f0f0f0;
}

.form-label {
    font-weight: bold;
    color: rgb(108, 106, 122);
}
