.thesaurus-tab {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.thesaurus-tab div {
    flex-grow: 1;
    border-bottom: 2px solid black;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
}

.thesaurus-tab div:hover {
    background-color: whitesmoke;
}

.thesaurus-tab div.active {
    background-color: #382225;
    color: white;
}

.sided-verse-item {
    background-color: #382225;
    margin-bottom: 8px;
    padding: 2px 10px;
    color: white;
    border-radius: 15px;
    margin-right: 6px;
    font-size: 13px;
}

.blink {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.book-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 20px;
    border: 2px solid #382225;
    font-size: 16px;
}

.book-list {
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid lightgrey;
    background-color: whitesmoke;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%!important;
}

.book-list:hover {
    background-color: white;
}

.book-list h6 {
    margin: 0;
}

.book-list span {
    font-size: 14px;
}

.whole-tab {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    background: #382225;
    color: white;
    border-radius: 50%;
    margin: 0px 5px;
    cursor: pointer;
    height: 100px;
    width: 100px;
}

.whole-tab.active {
    background-color: white;
    color: #382225;
    height: 110px;
    width: 110px;
    margin-bottom: -10px;
}

.whole-tab:hover {
    background-color: white;
    color: #382225;
}
