/*Header General*/
.header {
  height: 85px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(234,249,249,0.67) 0.1%, rgba(239,249,251,0.63) 90.1% );


  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
/*Logo Styles*/
.logo {
  height: 80px;
  margin-left: 7px;
}

.logo-button:hover {
  cursor: pointer;
}
/* */
.right-section {
  display: flex;
  align-items: center;
}

.box {
  margin-right: 10px;
}
/*--NavBar Button Styles--*/
.button{
  background: none;
  position: relative;
  cursor: pointer;
  border: solid 1px rgb(105, 105, 105);
  padding: 10px 18px;
  border-color: rgb(105,105,105);
  border-radius: 3px;
  margin: 5px;
  transition: 0.25s;
  -webkit-user-drag: none;
  font-weight: lighter;
}
/* Media query for mobile devices */
@media (max-width: 1130px) {
  .button {
    display: none; /* Hide the buttons on mobile devices */
  }
}

.button:hover{
  transition: 0.25s;
  opacity: 0.75;
  background-color: rgb(238, 238, 238);
}

/* Styles for burger button */
.burger-menu {
  display: none;/* Hide burger button by default */
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 10px; /* Adjust the top position as needed */
  right: 10px; /* Adjust the right position as needed */
  margin: 10px;
  border: solid 1px lightgray;
  border-radius: 8px;
  transition: 0.5s;
  z-index: 2;
}

.bar {
  width: 20px;
  height: 2px;
  background-color: rgb(105, 105, 105);
  margin: 3px 0;
  
}
.bar2{
  width: 20px;
  height: 2px;
  background-color: rgb(105, 105, 105);
  margin: 3px 0;
  
}

.bar3{
  width: 20px;
  height: 2px;
  background-color: rgb(105, 105, 105);
  margin: 3px 0;

}

/* Styles for drawer menu */
.drawer-menu {
  display: block; /* Hide drawer menu by default */
  position: absolute;
  top:85px;
  right: -300px;
  bottom:0px;
  height: calc(100vh - 85px);
  width: 300px;
  background-color: #E5E4E2;
  padding: 10px;
  border: solid 1px #fbfbfb;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.35s ease-in-out;
  z-index: 2;
  padding-left: 0px;


  
}


.drawer-menu a {
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
  color: black;

}

/* CSS class to show drawer menu */
.drawer-menu.show {
  display: block;
}

/* Media query for mobile devices */
@media (max-width: 1130px) {
  .burger-menu {
    display: block ; /* Shows burger on mobile devices */
  }
  .button{
    background: none;
    position: relative;
    cursor: pointer;
    border: none;
    transition: 0.25s;
    -webkit-user-drag: none;
    padding-left: 0px;
    margin-left: 0px;
    border-bottom: solid 1px #c9c8c6;
    margin-top: 25px;
    margin-left: 5px;
    font-weight: bold;
    font-size: large;
    padding-left: 7px;
}
  .button:active{
    color: lightgray;
    overflow: hidden;
  }

  .button:hover{
    transition: 0.25s;
    opacity: 0.9;
    border-radius: 7px;
    
  }

.burger-menu:active{
  background-color: lightgray;
  transition: 0.5s;
}

}

.cancel-btn{
  display: none;
  font-size: 20px;
  transition: 0.2s;
}

.cancel-btn:hover{
  font-size: 22px;
  transition: 0.2s;
  color: lightgray;
}