.browser-error {
  top: 0px;
  padding: 5px;
  width: 540px;
  margin: 0 auto;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif, monospace;
  position: relative;
  color: #242424;
}

.browser-error h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 600;
  color: #0062ff;
  letter-spacing: 4px;
}

.browser-error ul {
  list-style: disc;
  margin-left: 0px;
}

.browser-error ul li {
  margin-bottom: 5px;
}

.browser-error .exit-button-wrapper {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.browser-error .exit-button {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.browser-error .exit-button::before,
.browser-error .exit-button::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #242424;
}

.browser-error .exit-button::before {
  transform: rotate(45deg);
}

.browser-error .exit-button::after {
  transform: rotate(-45deg);
}
