/* bibles.css */
body {
    font-family: Arial;
    margin: 2em;
}

input[type="text"] {
    width: 300px;
    padding: 8px;
}

button {
    padding: 8px 16px;
    margin-left: 10px;
    margin-top: 20px;
}

#result {
    margin-top: 20px;
    white-space: pre-wrap;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
}

table {
    border-collapse: collapse;
    border: 2px black solid;
    font: 12px sans-serif;
    max-width:100%;
    white-space:nowrap;
}

td {
    border: 1px black solid;
    padding: 5px;
    max-width:100%;
    white-space:nowrap;
}

th {
    border: 2px black solid;
    padding: 5px;
    max-width:100%;
    white-space:nowrap;
}

#myUL {
    /* Remove default list styling */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#myUL li a {
    border: 1px solid #ddd; /* Add a border to all links */
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6; /* Grey background color */
    padding: 4px; /* Add some padding */
    text-decoration: none; /* Remove default text underline */
    font-size: 8px; /* Increase the font-size */
    color: black; /* Add a black text color */
    display: block; /* Make it into a block element to fill the whole list */
}

#myUL li a:hover:not(.header) {
    background-color: #eee; /* Add a hover effect to all links, except for headers */
}

.verse_number {
    vertical-align: baseline;
    position: relative;
    top: -.6em;
}

.verse_text {
    cursor: pointer;
    transition: background-color .75s cubic-bezier(.42,1,.16,.93),color .75s
}

div.verse_delimiter {
    display: block;
    margin: 5px;
}

.verse_book_chapter{
    font-size: 1.1em;
}

/* Warning banner when verse counts differ */
.different {
    color: #b30000; /* red text */
    font-weight: bold;
}
