/* Вспливаюче вікно */
.beta-modal {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.beta-modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  font-family: sans-serif;
  font-size: 16px;
}

.beta-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Статичний напис збоку */
.beta-static-label {
	position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f73933;
    color: white;
    padding: 10px 5px;
    writing-mode: vertical-rl;
    text-align: center;
    text-wrap-mode: nowrap;
    z-index: 999;
    border-radius: 8px 0 0 8px;
    text-orientation: upright;
}

@media (max-width: 480px) {
/* Статичний напис збоку */
.beta-static-label {
	position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f73933;
    color: white;
    padding: 10px 5px;
    writing-mode: vertical-rl;
    text-align: center;
    text-wrap-mode: nowrap;
    z-index: 999;
    border-radius: 8px 0 0 8px;
    text-orientation: upright;
}
}