:root {
    --primaryColor: #3171B7;
    --secondaryColor: #294180;
    --borderColor: #294180;
    --disabledColor: #D0D3D5;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.close-button {
  padding: 8px 16px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
