#popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

#close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
}

.kampanj-box {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.popup-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.popup-btn:hover {
  background-color: #005bb5;
}
.popup-btn.video-btn {
  background-color: #e63946; /* varm röd till video */
  color: #fff;
}

.popup-btn.video-btn:hover {
  background-color: #c72533;
}

.popup-btn.hemsida-btn {
  background-color: #457b9d; /* kall blå till hemsidor */
  color: #fff;
}

.popup-btn.hemsida-btn:hover {
  background-color: #35607a;
}
