/* Scripture Search Suggestions Styling */
.suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    min-width: 280px;
    max-width: calc(100vw - 32px);
    max-height: 500px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.suggestions li {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #f2f2f2;
}

.bible-result {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bible-result:hover {
    background-color: #f2f2f2;
}

.verse-reference {
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 3px;
    font-size: 14px;
}

.verse-text {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    margin-top: 4px;
}

searchTitle {
    font-size: 22px;
    color: #cc6699;
    font-weight: bold;
    display: block;
    padding: 10px 15px;
}

.search-separator {
    margin: 10px 0;
}

.search-separator hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.bible-reference-container {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin: 10px 5px;
}

.reference-header {
    font-size: 16px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 10px;
}

.verses-container {
    margin-bottom: 10px;
}

.verse-item {
    margin-bottom: 8px;
    line-height: 1.4;
}

.verse-number {
    font-weight: bold;
    color: #666;
    margin-right: 5px;
}

.more-verses {
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

.hedItemCon {
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
    gap: 12px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.hedProfilePicCon {
    flex: 0 0 40px;
}

.profilePicContainer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgb(255, 253, 253);
}

.profilePicItem {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hedTxtCon {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
