/*your custom css goes here*/ 

/* Hide any TEST button that might be cached or added dynamically */
button:contains("TEST"),
[onclick*="testSchoolNow"],
.btn-danger:contains("TEST") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Make search dropdown scrollable with max height */
.typed-search-box {
    max-height: 500px !important;
    overflow-y: auto !important;
}

.typed-search-box #search-content {
    max-height: 450px !important;
    overflow-y: auto !important;
}

/* Custom scrollbar for search results */
.typed-search-box::-webkit-scrollbar,
.typed-search-box #search-content::-webkit-scrollbar {
    width: 8px;
}

.typed-search-box::-webkit-scrollbar-track,
.typed-search-box #search-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.typed-search-box::-webkit-scrollbar-thumb,
.typed-search-box #search-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.typed-search-box::-webkit-scrollbar-thumb:hover,
.typed-search-box #search-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}
