/* CSS Document */
.env-notice {
  width: 200px;
  height: 30px;
  top: 30px;
  left: 30px;
  position: fixed;
  background-color: #FFE7A0;
  color: #291C1C;
  border: 1px solid #D18F01;
  border-radius: 10px;
  display: flex; /* Use flexbox to center text */
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
  font-weight: bold; /* Make text bold */
  text-align: center; /* Ensure multiline text is centered */
  z-index: 9999; /* Ensure it stays in front */
}


.env-border {
  position: fixed;
  background-color: #D18F01; /* Border color */
  z-index: 9998; /* Ensure borders are behind the notice */
}

.env-border.top,
.env-border.bottom {
  width: 100%;
  height: 3px; /* Border thickness */
}

.env-border.left,
.env-border.right {
  height: 100%;
  width: 3px; /* Border thickness */
}

.env-border.top {
  top: 0;
}

.env-border.bottom {
  bottom: 0;
}

.env-border.left {
  left: 0;
}

.env-border.right {
  right: 0;
}


