

body {
    margin: 0;
    font-family: Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    background-color:#333;
}
main{
  background-color:antiquewhite
}
header {
  padding-top: env(safe-area-inset-top);
}

@media screen and (display-mode: standalone) {
  header {
    height: 50px !important;
  }
}
.menu {
    background-color: #333;
    overflow: hidden;
}
.menu ul{
  list-style-type: style none;
  padding: 0px;
  margin: 0px;
}
.menu ul li{
  display: inline;
  margin-right: 10px;
}
.menu ul li.selected{
  display: inline;
  margin-right: 10px;
}
.menu a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.menu a.selected{
  background-color: #ccc;
  color: black;
}
.menu a:hover {
  background-color: #ddd;
  color: black;
}


.container {
  display: block;
  width: 100%;
  position: relative;
}

.sidebar {
  background-color: antiquewhite;
  overflow-y: auto;
  transition: all 0.3s ease;
  width: 50%;
  position: absolute;
  border-right: 1px solid grey;
}

.sidebar-collapsed .sidebar {
  width: 0px; 
}

.content {
  width: 100%;
  display: block;
}


.toggle-sidebar {
  cursor: pointer;
  height: 20px;
}
.sidebar-collapsed .toggle-sidebar{
  position:absolute;
}


.passage-display{
  padding: 5px 10px;
}







.compound-button {
  position: relative;
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.selector, .executor {
  padding: 10px 20px;
  border: none;
  background-color: #f9f9f9;
  cursor: pointer;
  outline: none;
}

.executor {
  background-color: #007bff;
  color: white;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 1000;
}

.dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #e9e9e9;
}



.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.audio-button{
  padding: 10px 15px 5px;
  margin: 5px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: large;
  line-height: 1;
}
.audio-button:hover{
  background-color: #333;
}

.audio-button:disabled{
  background-color: grey;
  cursor: not-allowed;
}

