
.navbar{
    background-color: rgb(221, 226, 214) !important;
  }

  
.navUl a:hover {
    background-color: rgb(161, 201, 106);
    color: white !important;
    padding: 9px 30px;
  
    transition-duration: 0.6s;
    transition-delay: 0.1s;
    border-radius: 12px;
    border-bottom: 4px solid black;

  }
  
  /* Hover effects */
  .nav-list a:hover {
    color: #d4b59b;
  }
  
  /* Underline Effect */
  .nav-list li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #8fbc8f;
    transition: width 0.3s ease;
  }
  
  .nav-list li:hover::before {
    width: 100%;
  }

  .reserve{
    background-color: rgb(161, 201, 106);
    color: var(--bs-nav-link-color);
    border: none;
    margin-top: 0px;
    padding: 10px 20px;
    border-radius: 12px;
  }

  .reserve:hover{
    transform: scale(1.1);
  }

  .navbar-brand{
    flex-basis: 40%;
  }
  .navbar-nav .nav-link.active{
    color: var(--bs-nav-link-color) !important;
  }
 
  
  
  .nav-pills button{
    background-color: rgb(161, 201, 106);
    color: white !important;
    margin-right: 20px;
  }
  .greenBtn{
    background-color: rgb(161, 201, 106) !important;
    border: none !important;
  }
  .greenBtn:hover{
    transform: scale(1.1);

  }
  .nav-pills button:hover{
    background-color: rgb(136, 170, 89);
    color: white !important;
    margin-right: 20px;
    transform: scale(1.1);
  }
  .nav-pills button.active{
    background-color: rgb(101, 126, 68) !important;
    color: white !important;
  }

  @media (min-width: 300px) and (max-width: 840px) {
    .reserve{
        background-color: transparent !important;
        color: var(--bs-nav-link-color);
        border: none;
        margin-top: 0px;
        padding: 0px;
        border-bottom: 2px solid rgb(101, 126, 68);
        padding-bottom: 9px;
        border-radius: 1px;
      }
      .reserve:hover{
        color: white;
      }
      .grid-template-row1:nth-child(3){
        border-bottom: none !important;
        background-color: red;
      }
      .modal-content{
        height: 98.2vh !important;
      }
      
  }


  @media (min-width: 812px) and (max-width: 840px) {
    
    .grid-template-row1{
        grid-template-columns: 1fr;
      }
      .grid-template-row1 div{
        border-bottom: 1px solid rgb(39, 37, 37);
        padding: 10px;
      }
      .grid-template-row1:nth-child(3){
        border-bottom: none !important;
        background-color: red;
      }
  }

  .noBdr{
    border-bottom: none !important;
  }