.btnLoginSetup{
  display: none;
}
#usernameInput{
  display: none;
}
.btnRegister{
  display: none;
}
.verifEmailBtn{
  display: none;
}
.signOut{
  display: none;
}
.uploadModule{
  display: none;
}





.nav-login{
  background-color: #565656;
}


#login-screen {
  position: fixed;
  top: 56.4px; /* Adjust this to match the height of your button */
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  background-color: #3f3f3f;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 20px;
  z-index: 1000; /* Ensure the box overlays other elements */
}

.switchLoginBtn {
  cursor: pointer;
  color: white;
  margin-bottom: 20px;
}
.switchLoginBtn:hover{
  color: #339643;

}

.login h3:hover {
  color: #007BFF;
}

input[type=text], input[type=email], input[type=password] {

  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #888;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background-color: #20672c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

button:hover {
  opacity: 0.8;
}

.loginInputs{
  width: 100%;
}
.loginButtons{
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}






.localTime {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 0;
  background-color: black;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1;
}
.localDate {
  position:relative;
}
.localDate:hover {
  color: #007BFF;
}
.localDate:hover .localTime {
  display: block;
}







.admin-symbol-svg svg{
  max-height: 25px;
}






/* Style the category container */
#admin-CategoriesModule {
  padding: 20px;
}



/* Hover effect for category rows */
.catRowToHover{
  cursor:pointer;
}
.catRowToHover:hover, .subCatRowToHover:hover  {
  background-color: hsl(0, 0%, 23%);
}

/* Styling for subcategory rows */
.subcategory-list {
  padding-left: 30px;
  margin-bottom: 10px;
}



/* Add a little more padding for subcategories */
.subCatAdmin {
  padding-left: 20px;
  margin-top: 10px;
}

/* Styling for category labels */
label.imgCatInputs {
  cursor: pointer;
  transition: color 0.1s ease;
}

/* Opened category label */
label.imgCatInputs.active {
  color: hsl(131, 37%, 65%);
}


/* Hover effect for buttons */
button:hover {
  background-color: hsl(131, 37%, 65%);
}


button.editSubcategory:hover, button.deleteSubcategory:hover {
  background-color: hsl(131, 37%, 65%);
}

/* Disable cursor pointer for subcategories (since they're not clickable) */
.subcategory-row {
  cursor: default;
}

.new-subcategory{
  margin-left: 20px!important;
}

.text-right{
  float: right;
}

.text-right[class*="hoverCatButtons-"], .text-right[class*="hoverSubCatButtons-"] {
  display: none;
}