/* Section all */
#asb_kj92h4n58df h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
	color: #6cc349;
    font-family: 'VT323', monospace;
    font-weight: bolder;
}

















div#asb_kj92h4n58df {
    background: #141312;
    color: #fff;
    padding: 10px;
    font-family: Arial, sans-serif;
    max-width: 1024px;
    margin: 0 auto;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

button.asb_pq47m9x32lk {
    color: #6cc349;
    font-family: 'VT323', monospace;
    font-weight: bolder;
}
button.asb_pq47m9x32lk {
    background: #6cc349;
    box-shadow: inset 0 -6px 0 #569e39, inset 0 6px 0 #569e39;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    transition: background 0.3s;	
	font-size: 1.125rem;
    line-height: 1.25rem;
    min-width: 4.75rem;
    padding: .9375rem 1.75rem;
    display: inline-flex;
    text-decoration: none;
    border: 2px solid #000;
}

p.source-org.copyright {
    color: #6cc349;
}





/* close button */


/* Target the span element with the 'error-close' class */
span.error-close {
  display: inline-block;
  position: relative;
  width: 24px; /* Size of the button */
  height: 24px;
  background: #a1ff6b; /* Light green background, matching loader */
  border: 2px solid #72b049; /* Darker green border for Minecraft contrast */
  border-radius: 0; /* No rounding for blocky, pixelated look */
  image-rendering: pixelated; /* Enhances pixelated effect */
  cursor: pointer; /* Indicates clickability */
  transition: background 0.2s ease; /* Smooth hover effect */
}

/* Create the 'X' shape using pseudo-elements */
span.error-close::before,
span.error-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px; /* Length of the 'X' lines */
  height: 4px; /* Thickness for a blocky look */
  background: #72b049; /* Darker green for the 'X' */
  image-rendering: pixelated; /* Pixelated effect for the lines */
}

/* Rotate to form the 'X' */
span.error-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

span.error-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover effect */
span.error-close:hover {
  background: #72b049; /* Darker green on hover */
}

/* Optional: Active state for click feedback */
span.error-close:active {
  background: #5e963d; /* Even darker green when clicked */
}