/* ===================================================
GLOBAL
=================================================== */

*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, sans-serif;
transition: .3s;
scroll-behavior: smooth;
text-decoration: none;
}

body{
background:#111;
color:white;
height:100vh;
display:flex;
flex-direction:column;
}

/* ===================================================
HEADER
=================================================== */

.header{
display:flex;
align-items:center;
gap:10px;
padding:10px;
background:#1e1e1e;
border-bottom:1px solid #333;
}

.header input{
flex:1;
padding:8px;
border-radius:5px;
border:none;
width: 100px;
background: transparent;
backdrop-filter: blur(20px);
color: cyan;
outline: none;
outline: 1px solid gray;
padding: 1rem;
border-radius: 2rem;
}
.header input:hover{
outline: 1px solid royalblue;
}

.header select{
padding:6px;
}

.title{
font-size:18px;
flex-shrink:0;
}

#menuBtn{
font-size:20px;
background:none;
border:none;
color:white;
cursor:pointer;
}

/* ===================================================
LAYOUT
=================================================== */

.layout{
flex:1;
display:flex;
overflow:hidden;
}

/* ===================================================
SIDEBAR
=================================================== */

#sidebar{
width:100px;
background:#1b1b1b;
overflow-y:auto;
padding:10px;
border-right:1px solid #333;
font-size: .8rem;
}
.open{
display: flex;
}

#sidebar h3{
margin-bottom:5px;
}

#sidebar ul{
list-style:none;
}

#sidebar li{
padding:6px;
cursor:pointer;
border-radius:4px;
}

#sidebar li:hover{
background:#333;
}

/* ===================================================
CONTENT AREA
=================================================== */

.content{
flex:1;
overflow-y:auto;
padding:15px;
padding-top: 5rem;
}

.selectors{
position: fixed;
display:flex;
gap:10px;
margin-bottom:5rem;
top: 80px;
background: transparent;
backdrop-filter: blur(20px);
}

.selectors select{
padding:6px;
background: transparent;
backdrop-filter: blur(20px);
color: white;
border-radius: 2rem;
padding: .5rem 1rem;
}

/* ===================================================
VERSES
=================================================== */

.verse{
display:block;
padding:6px;
line-height:1.6;
cursor:pointer;
border-radius:5px;
}

.verse:hover{
text-shadow: 0 0 10px gray;
}

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

/* ===================================================
HIGHLIGHT
=================================================== */

.highlight{
background:gold;
color:black;
}

/* ===================================================
FOOTER
=================================================== */

.footer{
text-align:center;
padding:8px;
background:#1e1e1e;
border-top:1px solid #333;
font-size:12px;
}
#versionSelect option{
flex: 1;
}
#backBtn{
padding: 1rem;
background: gray;
width: 10px;
height: 10px;
text-align: center;
font-size: 30px;
display: flex;
border: none;
align-items: center;
justify-content: center;
border-radius: 50%;
color: white;
border: 1px solid white;
background: transparent;
}
#backBtn:hover{
background: white;
color: black;
}