.combo-box {
    position: relative;
    border: 1px solid lightgray;
    border-radius: 4px;
    margin: 0 4px;
    overflow: visible;
    display: flex;
}

.combo-box-container
{
    display: flex;
}

    .combo-box input[type="text"] {
        width: 100%;
        padding: 5px 8px; 
    }

        .combo-box input[type="text"]::placeholder {
            color: #BBB; /* Change the color of the placeholder text */
            font-style: italic; /* Make the placeholder text italic */
            padding: 4px;
        }

    .combo-box .button-clear {
      float: right;
      position: absolute;
      width: 16px;
      margin-top: 6px;
      margin-right: 32px;
      right: 0px;
      font-weight: bold;
    }

.combo-box button:not(.button-clear) {
    width: 24px;
    border: none;
    padding-top: 2px;
    padding-bottom: -2px;
    margin-left: -25px;
    margin-top: 1px;
    margin-right: 1px;
    margin-bottom: 1px;
}

    .combo-box input[type="text"].warning {
        border: 1px dashed red;
    }

    .combo-box ul {
        list-style-type: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .combo-box li {
        padding: 4px;
        cursor: pointer;
        font-size: 14px;
    }

        .combo-box li.item-selected {
            background-color: mediumaquamarine;
        }

        .combo-box li:not(.item-selected):hover {
            background-color: #eee;
        }
    .combo-box.above .combo-box-drop {
        bottom: 100% !important; /* Adjust this value if you need the dropdown to appear above the input */
        top: auto !important;
    }
    .combo-box .combo-box-drop {
        max-height: 200px; /* Adjust the height as needed */
        overflow-y: auto; /* Enables vertical scrolling */
        /* Additional styles for appearance */

        top: 100%; /* Adjust this value if you need the dropdown to appear above the input */

        padding: 0;
        margin: 0;
        margin-bottom: 3px;
        position: absolute;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        z-index: 99900000;
    }

 

.combo-box-group {
    display: flex; /* Use Flexbox layout */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: center; /* Horizontally align items in the center */
    font-size: 14px;
    font-family: Calibri;
    border: 1px solid red;
}


.full-group {
    display: flex; /* Use Flexbox layout */
    flex-direction: row; /* Arrange items horizontally */
}

.drop-notice {
    font-size: 10px;
    font-style: italic;
    color: gray;
    padding: 6px !important;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 4px solid #ccc;
    border-top: 4px solid #3498db; /* Change the color to your desired spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Adjust the animation duration and style as needed */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
