/* Style the button itself */
button[aria-label="Mobile Menu Toggle"].button {
  background-color: #8b0000 !important; /* Red background */
  color: #fff; /* Text (if any) will be white, but we hide actual text anyway */
  border: none;
  border-radius: 5px;
  width: 40px;              /* Slightly smaller button */
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* Ensures no stray text or elements show */
}

/* This 'box' is our middle line. */
button[aria-label="Mobile Menu Toggle"].button .box {
  display: block;
  width: 18px;     /* Make lines narrower */
  height: 2px;     /* Thickness of each line */
  background: #fff;/* White line color */
  position: relative;
}

/* Top and bottom lines via pseudo-elements */
button[aria-label="Mobile Menu Toggle"].button .box::before,
button[aria-label="Mobile Menu Toggle"].button .box::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fff; 
  position: absolute;
  left: 0;         /* Align left edges */
}

/* Position the top line above .box */
button[aria-label="Mobile Menu Toggle"].button .box::before {
  top: -6px;       /* Move the top line up */
}

/* Position the bottom line below .box */
button[aria-label="Mobile Menu Toggle"].button .box::after {
  top: 6px;        /* Move the bottom line down */
}


/* backg black line */

/* Override the black lines in the Astroid burger menu */
.burger-menu-button .inner,
.burger-menu-button .inner::before,
.burger-menu-button .inner::after {
  background-color: transparent !important;  /* Make the lines invisible */
}

