
    /* new search input */
    .dispay-none {
        display: none;
    }

    .search-container {
        position: relative;
        width: 100%;
    }

    .search-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        pointer-events: none;
        z-index: 2;
    }

    .search-input {
        width: 100%;
        height: 40px;
        padding-left: 35px;
        box-sizing: border-box;
        border: 1px solid #ced4da;
        border-radius: 4px;
        outline: none;
        font-size: 16px;
        color: #333;
    }

    .search-input:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    .suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border: 1px solid #ced4da;
        border-top: none;
        max-height: 140px;
        overflow-y: auto;
        background: #fff;
        display: none;
        z-index: 10;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 4px 4px;
    }

    .suggestions div {
        padding: 10px 12px;
        cursor: pointer;
        font-size: 16px;
        color: #333;
    }

    .suggestions div:hover {
        background-color: #6c757d;
        color: white;
    }

    .suggestions::-webkit-scrollbar {
        width: 8px;
    }

    .suggestions::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .suggestions::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    .suggestions::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .suggestions .warning {
        padding: 10px 12px;
        font-size: 16px;
        color: #b57d6a;
        background-color: #f8f9fa;
        border-top: 1px solid #ced4da;
        border-radius: 0 0 4px 4px;
    }

    .suggestions .no-results {
        padding: 10px 12px;
        font-size: 16px;
        color: #b57d6a;
        background-color: #f8f9fa;
        border-top: 1px solid #ced4da;
        border-radius: 0 0 4px 4px;
    }

    .clear-search-button {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #6c757d;
        font-size: 14px;
        cursor: pointer;
        display: none;
        z-index: 2;
        padding: 0;
    }

    .clear-search-button:focus {
        outline: none;
    }

    .search-container .search-input:not(:placeholder-shown) + .clear-search-button {
        display: block;
    }
    /* new search input */