
    .suggestion-box {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
        border: none;
        z-index: 9999;
        width: 100%;
        max-height: 150px;
        overflow-y: auto;
        border-radius: 100px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .suggestion-item {
        cursor: pointer;
        border-radius: 10px;
        color: black;
        background-color: #FFFFFF;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .suggestion-item:hover {
        /*background-color: rgba(97, 67, 228, 0.2); !* Light purple background on hover *!*/
        background-color: #6143E4;
        color: #FFFFFF; /* Change text color to purple only for the hovered item */
    }

    .form-control{
        width: 20%;
        height: 50px;
        border-radius: 100px;
        border-color: #6143E4;


    }
    
.search-bar form {
    display: flex;
    width: 100%;
    margin: 0;
    background-color: #fafafa;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    border: 1px solid #E2E3E5;
    border-radius: 8px;
    padding: 2px 5px;
    gap: 5px;
    transition: ease all 0.3s;
}

.search-bar form:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

}

.s-input {
    width: 100%;
    padding: 10px;
    background-color: #fafafa;
    border: none;
    outline: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

::placeholder {
    color: #878790;
    font-weight: 400;
}

.search-button {
    background-color: #fafafa;
    color: #878790;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;    ;
    transition: ease all 0.3s;
}

.search-button i {
    font-size: 18px;
    color: #b1b1b9;
}

.search-button:hover {
    background-color: #f1f1f1;
}


    .row-form {
        display: flex;

        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .form-control-inline {
        height: 50px;
        border-radius: 100px;
        border: 1px solid #6143E4;
        padding: 0 15px;
        flex: 1;
        min-width: 200px;
        box-sizing: border-box;
    }

    .btn-inline {
        height: 50px;
        border-radius: 100px;
        background-color: #ab99fa;
        color: #fff;
        border: none;
        padding: 0 25px;
        cursor: pointer;
    }

    .btn-inline:hover {
        background-color: #4833b7;
    }

   .report-note {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #fff;
}

