#cap-popup-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#cap-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e14b4b;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

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

.cap-popup-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cap-icon {
  width: 25px;
  height: 25px;
  background-color: #e14b4b;
  border-radius: 50%;
  flex-shrink: 0;
}

.cap-text {
  flex: 1;
}

.cap-text p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
}

#cap-yes {
  padding: 8px 15px;
  background-color: #e14b4b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
