.user-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999999;
}


.options-container {
  position: absolute;
  top: 0;
  right: -8%;
  width: 8%;          
  height: 100vh;         
  background-color: #f1f1f1;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
   justify-content: space-between;
  z-index: 99998;
}

.noscroll {
  overflow: hidden !important;
}


.options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.options-top,
.options-bottom {
  display: flex;
  flex-direction: column;
}

.options-list li {
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.hidden {
  display: none !important;
}

.options-list li#btn_ticket {
  margin-top: 60px;           
}

.options-list li:hover {
  background-color: #ddd;
}

.options-container.show-options {
  right: 0;
}
