* {
  color: #ffff;
  font-family: monospace;
  font-weight: bold;
  text-decoration: none;
  background-color: inherit;
}

body {
  text-align: unset;
}

.nav {
    background-color: rgb(19, 21, 34);
    padding: 10px 20px;
}
nav.nav{
    display: ruby;
}
.nav-row {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  /* justify-content: space-between; */
}

/* .nav-col {
  display: flex;
  align-items: center;
  padding: 0 10px; 
} */
.nav-col.left {
  flex: 1;
  justify-content: flex-start;
}

.nav-col.right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#logo-img {
  max-width: 200px;
  max-height: 70px;
  margin-right: 0; /* Removed extra margin */
  border-radius: 50%;
  object-fit: cover;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}


/* .nav-list li {
  margin-left: 20px; 
} */

.menu-button {
  display: none; /* Change: Hide menu button by default */
}



/* Mobile Menu Button */
.menu-button {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

 li a {
    display: ruby-text !important;
    
    font-size: x-large;
    text-decoration: none;
    color: #c6a16e;
    cursor: pointer;
    margin-top: 20px !important;
}



#title {
  font-size: 30px;
  font-weight: bolder;
  color: #c6a16e;
  margin-right: 0 !important; 
  margin-left: 800px;

}


.side-bar {
  background-color: floralwhite;
  position: fixed;
  top: -12px;
  border-radius: 10px;
  left: 0;
  height: 100vh;
  width: 300px;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgb(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.side-bar li{
  background-color: inherit !important;
}
#side-auth-button li{
  display: block;
}
.side-bar-section{
  background-color: floralwhite !important;
}
.side-bar li a{
  background-color: unset !important;
  display: inline-flex !important ;
  color:rgb(30, 32, 49);
}
#side-li{
      background-color: unset;
    margin-bottom: 40px;
  }
.fa-times{
  margin-right: 400%;
}
li a:hover{
  color: rgba(224, 222, 209, 0.76);
}
button {
  background-color: #c6a16e;
  color: rgb(36, 34, 34);
  font-size: large;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
  width: 160px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  display: inline;
}

.user-menu-wrapper {
  position: relative;
  display: inline-block;
}

.user-circle {
    padding: 10px;
    width: 230px;
    height: 30px;
    border-radius: 10px;
    
  /* width: 40px;
  height: 40px;
  border-radius: 50%; */
  box-sizing: unset;
  background-color: #fff;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
  justify-content: center;
  align-items: center;
  
}
.dropdown-menu hr{
    border: 0;
    height: 1px;
    /* width: 100%; */
    background: #ccc;
    margin: 15px 0 10px;
    margin-left: 6%;
    margin-right: 6%;
  }
.user-circle h4 {
  margin-top: 5px;
  justify-self: center;
  line-height: unset !important;
  /* margin-right: 14px;
  margin-top: 11px; */
  font-size: xx-large;
  color: rgb(63, 60, 60);
  background: none;
  font-family: monospace !important;
  font-weight: 600 !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 36px;;
  right: 0;
  background-color: #ffff;
  border: 1px solid rgb(236, 234, 215);
  border-radius: 8px;
  padding: 0;
  margin: 0;
  margin-left: 30px;
  margin-top: 15px;
  list-style: none;
  width: 250px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: right;
}

.dropdown-menu li {
  /* border-bottom: 1px solid rgb(236, 234, 215); */
  /* background-color: rgb(19, 21, 34); */
  background-color: unset !important;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  font-size: 19px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block !important;
  padding: 10px 15px;
  color: rgb(36, 34, 34);
  text-decoration: none;
  background-color: #ffff !important;
}

.dropdown-menu li a:hover {
  background-color: #ffff;
  border: none;
}

.dropdown-menu.show {
  display: block;
}
i {
  font-size: x-large;
  background-color: inherit;
  margin-left: 15px;
  color: darkgray;
  font-style: normal;
}

span {
  background-color: inherit;
  color: #3333;
}

#username {
  background-color: #ffff;
  margin-top: 10px;
  color: rgb(36, 34, 34);
  text-align: center;
}
.menu-button {
    display: none;
  }


/* @media (max-width: 1200px){
  .nav-row {
    flex-direction: column;
    align-items: center;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .nav-list li {
    margin: 10px 0;
  }

  #title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  #logo-img {
    max-width: 150px;
    max-height: 60px;
  }

  .nav-col.left,
  .nav-col.right {
    width: 100%;
    justify-content: center;
  }
} */

@media (max-width:1200px){
  .hideOnMobile {
    display: none;
  }

  #title {
    font-size: 30px;
    font-weight: bolder;
    color: #c6a16e;
    margin-right: 0 !important; 
    margin-left: 750px;
  }
  .menu-button {
    display: block;
    /* margin-top: 20px; */
  }

  .nav-list li:not(.brand-name):not(.menu-button) {
    display: none; /* Hide menu items on mobile */
  }

  
}


@media (max-width: 800px) {
  

  

  #title {
    font-size: 30px;
    font-weight: bolder;
    color: #c6a16e;
    margin-right: 0 !important; 
    margin-left: 450px;
  }

  .side-bar {
    width: 40%;
  }
  
  .dropdown-menu .hr{
    border: 0;
    height: 1px;
    width: 300px;
    background: #ccc;
    margin: 15px 0 10px;
  }
  .fa-times {
    margin-right: 500%;
  }
  .menu-button {
    display: block;
    /* margin-top: 30px; */
    /* margin-left: 500px; */
  }
}
@media (max-width: 400px) {
  #title {
    font-size: 30px;
    font-weight: bolder;
    color: #c6a16e;
    margin-right: 0 !important; 
    margin-left: 180px;
  }

  .nav-list a {
    font-size: 14px;
  }

  .nav-col#title {
    font-size: 18px;
  }

  .nav-col#logo img {
    width: 35px;
  }

  .side-bar {
    width: 100%;
    padding-right: 20px;
  }
  li {
    margin-right: 20px;
  }
  .fa-times{
    margin-right: 600%;
  }
  .menu-button {
    display: block;
    /* margin-top: 30px; */
  }
}