/* General Popup Styling */
.popup-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 0px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 1000;
  display: none; /* Initially hidden */
}

.popup-header {
  background-color: #007bff;
  color: white;
  padding: 10px;
  font-size: 18px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: grab;
  user-select: none;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f00;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup-body {
  padding: 20px;
}

.popup-footer {
  display: flex;
  padding: 20px;
  justify-content: flex-end;  
}

.ok-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.cancel-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Image Preview Styling */
.image-preview {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.image-preview img {
  max-width: 100%;
  height: auto;
  display: none;
}
