﻿.custom-select {
    position: relative;
    /*width: 300px;*/
    margin: 0 auto;
}

    .custom-select input {
        width: 100%;
        padding: 6px 12px;
        /*font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
        outline: none;
        transition: border-color 0.2s ease;
    }

        .custom-select input:focus {
            border-color: #007bff;
        }

.dropdown-list-custom {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left:0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.2s ease;
}

    .dropdown-list-custom li {
        padding: 12px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        list-style:none;
    }

        .dropdown-list-custom li:hover {
            background-color: #007bff;
            color: white;
        }

.selected-custom {
    background-color: #007bff;
    color: white;
}

.no-results {
    padding: 12px;
    text-align: center;
    color: #999;
}
.clear {
    display: flex;
    justify-content: end;
    align-items: center;
}

.clearinput {
    position: absolute;
    background-color: #fff;
    border: none;
    margin: 5px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: 0.3s;
}

    .clearinput:hover {
        color: crimson;
    }

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1340px;
    }
}