#cgu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 10000;
  pointer-events: all;
}

#cgu-PopUp {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  max-width: 520px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 22px 24px 18px 24px;
  flex-direction: column;
  align-items: center;
  z-index: 10001;
  font-family: "Segoe UI", Arial, sans-serif;
  border: 1px solid #e0e0e0;
}
#cgu-PopUp span {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.08rem;
  line-height: 1.5;
}
#cgu-PopUp span a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
#cgu-PopUp span a:hover {
  color: #0056b3;
}

.cgu-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.cgu-btn {
  min-width: 130px;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}

.accept {
  background: #198754;
  color: #fff;
}
.accept:hover {
  background: #146c43;
}

.leave {
  background: #fff;
  color: #dc3545;
  border: 1.5px solid #dc3545;
}
.leave:hover {
  background: #dc3545;
  color: #fff;
}

@media (max-width: 600px) {
  .cgu-PopUp {
    max-width: 98vw;
    padding: 16px 6vw 14px 6vw;
  }
  .cgu-PopUp .cgu-btn-group {
    flex-direction: column;
    gap: 10px;
  }
}

/*# sourceMappingURL=PolicyPopUp.css.map */
