body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
#main{
  background-color: rgb(40,40,40);
  color: white;
  display: flex;
  min-height: 900px;
}
#map{
  width: 90%;
  height: 100%;
  position: relative;
}

#button-panel {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 160px;
  background-color: rgba(40, 40, 40, 0.85);
  border-radius: 5px;
}

.panel-button {
  width: auto;
  height: 28px;
  padding: 0 12px;
  flex-shrink: 0;
}
#info{
  width: 10%;
  height: 100%;
  padding: 0 10px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.practice{
  width: 100%;
  background-color: rgb(100,100,100);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  padding: 0 0 5px 0;
}

.practice h3{
  margin: 10px;
}

.pButton{
  width: 100%;
  height: 25px;
}
.active{
  background-color: orange;
  color: white;
  border: none;
  border-radius: 2px;
}
.pButton:hover{
  background-color: rgb(170,170,170);
}

#test{
  transition: background-color 0.6s ease;
  width: 100%;
  background-color: rgb(150,150,150);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  padding: 0 0 5px 0;
}

#test li{
  list-style: none;
  list-style-position:inside;
  margin:0 0 5px 0;
  padding:0;
}
/* Tooltip styles */

.tt{
  font-size: 14px;
  color: black;
}

.tooltip{
  text-align: center;
}

#runway-panel {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background-color: rgba(40, 40, 40, 0.85);
  border-radius: 5px;
}

#sid-answer-buttons {
  display: none;
  width: calc(100% - 20px);
  gap: 5px;
  padding: 0 0 5px 0;
  margin: 0 10px;
}

#testbutton {
  width: calc(100% - 20px);
  margin: 0 10px;
}

#sid-answer-buttons .pButton {
  flex: 1;
}

.runway-button {
  height: 28px;
  padding: 0 12px;
  cursor: pointer;
}

.leaflet-tooltip.aorTip{
  background: none;
    border: none;
    box-shadow: none;
  text-align: center;
  color: black; 
  font-size: 12px;
}
