body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width:100vw;
    background-color: #f4f4f4;
    overflow: hidden; /
}


.container {
    position:relative;
    height: 100vh; /* Full height of the viewport */
}

.verse-display {
    overflow: hidden; /* Prevents scrolling inside .content */
    padding:20px;
    background: blue;
    color: white;
    background-color: black;
    text-align: center;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;

    background: red;
    justify-content: space-between;
    align-items: center;
    background-color: #303030;
    color: white;
}


.header {
    background-color: #ccc;
}

.content {
    overflow: auto; /* Allows scrolling if content overflows */
    background-color: #f5f5f5;
}


#verse-display span {
    display: inline;
}

#footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height:12px;
}

.arrow {
    cursor: pointer;
    font-size: 12px;
}

#footer-input input {
    font-size: 12px;
    width: 100%;
}

#verse-info {
    font-size: 12px;
}

button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

input {
    font-size: 12px;
    width: 100%;
    border: 1px solid #ccc;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.verse-reference {
    display:none;
    font-size: 8px;
    color: black;
    background-color:white;
}