/* Basic styling for the Bible Viewer container */
#bible-viewer-container {
    font-family: 'Inter', sans-serif;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 800px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Styling for the control dropdowns */
.bible-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bible-controls select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Styling for the container that holds the Bible text */
#bible-text-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #eee;
    line-height: 1.6;
    color: #333;
}

#bible-text-container p {
    margin-bottom: 1em;
}

/* Styling for the words that have a Strong's number */
.strongs-word {
    color: #0073aa; /* A standard WordPress blue */
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
}

.strongs-word:hover {
    color: #00a0d2;
    text-decoration: none;
}

/* Styling for the modal popup */
#strongs-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#strongs-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

#strongs-definition p {
    margin-bottom: 0.5em;
}
