body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.split {
    min-height: 85vh;
    max-height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn1 {
    padding: 8px;
    background-color: #1c1c1c;
    margin-top: 1rem;
    color: #ffffff;
    border: 1px #F0A900 solid;
    cursor: pointer; 
}

.btn1:hover {
    background-color: #F0A900;;
    color: #1c1c1c;
}

.btn2 {
    padding: 8px;
    background-color: #1c1c1c;
    margin-top: 1rem;
    color: #ffffff;
    border: 1px #F0A900 solid;
    cursor: pointer; 
    width: 14%;
    margin: 0 auto;
}

.btn2:hover {
    background-color: #F0A900;;
    color: #1c1c1c;
    text-decoration: none;
}

.col {
    display: flex;
    justify-content: center;
}

textarea {
    width: 100%;
}

#left-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

#left-panel h1 {
    text-align: center;
    margin-bottom: 1rem;
}

#left-panel p {
    text-align: center;
    margin-bottom: 1rem;
}

.yellow {
    color: #F0A900;
}

.active1 {
    background-color: #F0A900;
    color: #fff;
}

.wrapper {
    color: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#floating-panel {
   margin: 10px;
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 50px;
    z-index: 5;
    background-color: #fff;
    padding: 5px;
    text-align: center;
    font-family: 'Roboto','sans-serif';
    line-height: 30px;
    border-radius: 3px;
  }
  #right-panel {
    font-family: 'Roboto','sans-serif';
    line-height: 30px;
    padding-left: 10px;
    z-index: 9999;
    overflow: auto;
    background-color: #fff;
    width: 50%;
    max-height: 80%;
    display: none;
    margin: 0 auto;
  }

  #right-panel select, #right-panel input {
    font-size: 15px;
  }

  #right-panel select {
    width: 100%;
  }

  #right-panel i {
    font-size: 15px;
    color: #111;
    float: right;
    margin: 1.5rem;
    cursor: pointer;
  }
  
  #map {
    height: 100%;
    width: 100%;
  }
  #floating-panel {
    background: #fff;
    color: #333;
    padding: 5px;
    font-size: 14px;
    font-family: Arial;
    border: 1px solid #ccc;
    box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
    display: none;
  }

  #right-panel .fa-cross {
      color: #333;
  }

  @media print {
    #map {
      height: 500px;
      margin: 0;
    }
    #right-panel {
      float: none;
      width: auto;
    }
  }

  
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}


.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}


.tab button:hover {
    background-color: #ddd;
}


.tab button.active {
    background-color: #F0A900;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    width: 75%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabcontent {
    animation: fadeEffect 1s; 
}


@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@media (max-width: 768px) {
    .wrapper {
        height: 100%;
    }
    .tabcontent{ 
        height: 100%;
    }
    #right-panel {
        font-family: 'Roboto','sans-serif';
        line-height: 30px;
        padding-left: 10px;
        z-index: 9999;
        overflow: auto;
        background-color: #fff;
        width: 100%;
        height: 90%;
        display: none;
        margin: 0 auto;
      }
}


.nav1{
    border: none;
    outline: none;
    background: #F0A900;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}
