#glossary-search {
    border: 1px solid #C7CFD5;
    border-radius: 5px;
    padding: 10px 16px;
    height: 44px;
    background: transparent;
    box-shadow: none;
}
.glossary-item {
    padding: 16px 20px;
    background: #ECF1F6;
    border-radius: 5px;
    min-height: 84px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.glossary-item:hover{
    background: #a1d4fc;
}
.test_name_wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.test_name_wrapper:hover{
    cursor: pointer;
}
.test_name_wrapper img{
    width: 32px;
    height: 32px;
}
.test_name{
    margin: 0;
}
.expand-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

#glossary-container {
    display: flex;
    gap: 20px;
}

.glossary-sidebar {
    width: 30%;
    padding-right: 20px;
}
ul.glossary-list,
ul.glossary-subcategories{
    margin-left: 0;
}
.glossary-content {
    width: 70%;
}

.glossary-category,
.glossary-list li{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    list-style: none;
}
.search-container {
    position: relative;
    width: 100%; /* Adjust the width as needed */
    max-width: 400px; /* Adjust the max-width as needed */
}

.search-input {
    width: 100%;
    padding: 10px 30px 10px 10px; /* Space for the icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 32px;
    color: #c6cfd5;
    line-height: 22px;
}

.alphabet-filter{
    cursor: pointer;
}
.glossary-category:hover {
    background-color: #f5f5f5;
}

.glossary-subcategories {
    list-style-type: none;
    padding-left: 15px;
}

#glossary-terms {
    list-style-type: none;
    padding: 0;
    margin-left: 0;
}
/**
* pagination-controls 
*/
#pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 5px;
}

.pagination-btn {
    border: 1px solid #E9E9E9 !important;
    padding: 8px 12px !important;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px !important;
    min-width: 40px;
    text-align: center;
    color: #313131 !important;
    font-weight: normal !important;
    text-transform: none !important;
}

.pagination-btn.active {
    background-color: #1577C3;
    color: white !important;
    border-color: #1577C3;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ellipsis {
    padding: 8px 12px;
    font-size: 14px;
}
/**
* modal window
*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    position: relative;
    height: fit-content;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
#glossary-container .glossary-category.parent-category,
#all-tests-btn {
    font-weight: 600;
}
 #category-pdf-link {
     text-decoration: underline;
}
.glossary-category.active,
.alphabet-filter.active {
    font-weight: bold;
    color: #1777c3;
    text-decoration: underline;
}
#category-title{
   color: #1777c3; 
   margin-bottom: 0;
}
#glossary-container .glossary-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
