
.custom-select-container {
    position: relative;
    border-radius: 1rem;
    width: 100%; 
    font-family: 'Arial', sans-serif; 
    margin-bottom: 0.5rem;
}

.select-selected {
    width: 100%;
    border-radius: 1rem;
    color: #333;
    padding: 8px 8px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    user-select: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-selected::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #555;
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 99;
    max-height: 300px; 
    overflow-y: auto; 
}

.select-hide {
    display: none;
}

.select-items div {
    color: black;
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #dee2e6;
}

.select-items div:hover {
    background-color: #e9e9e9;
}