#power-outage-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#power-outage-popup .popup-content {
  background: #fff;
  max-width: 640px;
  width: 90%;
  padding: 24px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  color: #222;
}

#power-outage-popup .popup-content h2 {
  margin-top: 0;
  color: #00a4e9;
  font-size: 30px;
  font-weight: 900;
}

#power-outage-popup .popup-content p {
  font-size: 18px;;
  line-height: 1.5;
  margin: 16px 0;
}

#power-outage-popup .popup-content button.close-btn {
  background-color: #0c1eba;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 22px;
  outline: none;
}

#power-outage-popup .popup-content button.close-btn:hover {
  background-color: #17123d;
  outline: none;
}

#power-outage-popup .popup-content .close-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  cursor: pointer;
  color: #777;
  font-size: 24px;
}

#popup-trigger-icon {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #0c1eba; /* modrá */
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#popup-trigger-icon:hover {
  background-color: #17123d;
}