/*ADMIN AREA FORM STYLES*/
.c-admin-form__group {
    margin-bottom: 12px;
    width: 80%;
}
.c-admin-form__group input,
.c-admin-form__group textarea {
    height: 40px;
    width: 100%;
}

/*PUBLIC GLOSSARY STYLES*/

.glossary-terms-grouped h2 {
    font-size: 22px;
}

.glossary-pagination {
    margin-bottom: 30px;
    font-size: 22px;
    display: inline-flex;
    gap: 16px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 10px;
}

.glossary-pagination a.glossary-letter {
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
    height: 30px;
    width: 30px;
    text-align: center;

}

.glossary-pagination .glossary-letter.selected {
    background-color: orange;
    border-radius: 4px;
}
.glossary-list {
    list-style-type: none;
    padding-left: 0;
}

.glossary-list li {
    margin-bottom: 5px;
}

.glossary-list a {
    text-decoration: none;
    color: #666 !important;
}

.glossary-list a:hover {
    text-decoration: underline;
}

.back-link {
    display: block;
    margin-bottom: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: orange; /* Color del enlace */
}

.back-link:hover {
    text-decoration: underline; /* Subrayado al pasar el ratón */
}

.selected-letter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 30px;
    width: 50%;
}
.selected-letter-bar h2 {
    font-size: 18px;
    margin: 0;
}
.selected-letter-bar .back-link-button {
    background: orange;
    font-size: 18px;
    border-radius: 4px;
    width: 150px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.term-description-title {
    font-size: 22px;
    padding: 0;
}



.glossary-search {
    margin-bottom: 20px;
}

#term-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    height: 40px;
    border-radius: 4px;
}

.search-results {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
}

.search-term {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.search-term a {
    text-decoration: none;
    color: #0073aa;
}

.search-term:hover a {
    color: #005177;
}


