.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.notification-box {
  background: white;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
}

.notification-box h3 {
  margin-bottom: 15px;
  color: #800080;
  font-size: 20px;
}

.notification-box p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
  line-height: 1.5;
}

.notification-box a {
  color: #800080;
  text-decoration: underline;
}

.notification-box button {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #800080;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.notification-box button:hover {
  background-color: #9b45a3;
}

/* 📱 Адаптация под мобильные экраны */
@media (max-width: 480px) {
  .notification-box {
    padding: 20px;
  }

  .notification-box h3 {
    font-size: 18px;
  }

  .notification-box p {
    font-size: 14px;
  }

  .notification-box button {
    font-size: 14px;
    padding: 8px 20px;
  }
}
