@media (max-width: 767px) {
    .ui-autocomplete {
        width: 90%;
        left: 2.5%;
        max-height: 250px;
        font-size: 14px;
        padding: 8px;
        top: -3px;
    }

    .ac-li-each {
        padding: 8px;
    }

    .ac-item-div .name {
        font-size: 16px;
    }

    .ac-item-div .desc {
        font-size: 12px;
    }

    .ui-autocomplete::-webkit-scrollbar {
        width: 4px;
    }

    .ui-autocomplete::-webkit-scrollbar-thumb {
        background-color: #cc0101;
        border-radius: 10px;
    }

    .ui-autocomplete::-webkit-scrollbar-track {
        background-color: #e0e0e0;
    }
}

.user-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.ac-li-each {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    margin-bottom: 5px;
}

.ac-li-each:hover {
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ac-item-div .name {
    font-size: 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ac-item-div .name a {
    color: inherit;
    text-decoration: none;
}

.ac-item-div .name a:hover {
    color: #cc0101;
}

.ac-item-div .desc {
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #888;
    margin-top: 4px;
    display: block;
}

.ac-item-div .desc a {
    color: #cc0101;
    text-decoration: none;
}

.ac-item-div .desc a:hover {
    text-decoration: underline;
}

.ui-autocomplete {
    background-color: #fff;
    border-radius: 0px 0px 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    margin-top: 5px;
    z-index: 1000;
}

.ui-autocomplete.ui-widget-content {
    border: none;
}

.ui-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    background-color: #cc0101;
    border-radius: 10px;
}

.ui-autocomplete::-webkit-scrollbar-track {
    background-color: #e0e0e0;
}

.page_copyright .webdesign{
    text-align: right;
}

.page_copyright .webdesign span{
    color: #e7214e;
}

.page_copyright .webdesign a{
    color: black;
}

.page_copyright .max-width-footer{
    max-width: 100%!important;
    margin: 0px!important;
}

@media (max-width: 768px) {
    .page_copyright .webdesign, .info-footer {
        text-align: center;
    }
}