/* Style the form-table for better spacing */
.form-table th {
    text-align: left;
    width: 200px;
    font-weight: bold;
    padding: 10px 0;
}

.form-table td {
    padding: 10px 0;
}

/* Style text inputs */
input[type="text"],
input[type="url"],
input[type="number"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* Style textarea */
textarea {
    width: 100%;
    max-width: 600px;
    height: 100px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    resize: vertical;
}

/* Style submit button */
.button-primary {
    background-color: #007cba;
    border-color: #007cba;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
}

.button-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
}

.bloodtest_search_results_item {
    background-color: #333;
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
}

.bloodtest_search_results_item:hover {
    background-color: #a6823b;
    cursor: pointer;
}

.bloodtest_search_results_item a {
    color: #a6823b !important;
    text-decoration: none !important;
}

.bloodtest_search_results_item:hover a {
    color: #fff !important;
    text-decoration: none !important;
}


/* SEARCH 2 */
/* Style the search container */
        .bloodtest-search-container {
            position: relative;
            margin: auto;
            display: flex;
            align-items: center;
            z-index: 9999;
        }

        /* Style the search input */
        .bloodtest-search-input {
            flex: 1;
            font-size: 16px;
        }

        /* Style the search button */
        .bloodtest-search-button {
            padding: 10px 15px;
            cursor: pointer;
        }

        /* Style the dropdown results */
        .bloodtest-search-results {
            position: absolute;
            width: calc(100% - 2px);
            background: #333;
            border: 1px solid #ddd;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            display: none;
            z-index: 5000;
            top: 50px; /* Adjust for input height */
            left: 0;
            border-radius: 5px;
            list-style: none;
            padding-left: 0px;
            overflow-y: auto;
        }

        /* Style individual search result items */
        .search-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
        }

        .search-item:hover {
            background: #666666;
        }