@charset "UTF-8";

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px); 
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

#popup-content {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
}

.popup-content-main {
  font-size: 16px;
  padding: 10px;
  flex: 1;
  overflow-y: auto;
}

.popup-content-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  button {
    width: 100px;
    font-size: 16px;
    padding: 6px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  button:hover {
    opacity: 0.5;
  }
}

.popup-button-cancel {
  color: #F19736;
  background-color: white;
  border: 2px solid #F19736;

}

.popup-button-done {
  color: white;
  background-color: #F19736;
  border: 2px solid #F19736;
}

.popup-confirm-caption {
  font-weight: bold;
  border-bottom: 1px solid #E5E5E5;
}

.popup-confirm-content {
  margin-left: 10px;
}
