/* css/popup.css */
.news-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
  border-radius: 4px;
  text-align: center;
  border-radius: 20px;
}

.news-popup.restaurant-closed {
  border: 10px solid #e7d9d6;
}

.news-popup .close-btn {
  position: absolute;
  font-size: 20px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}