* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  margin: 0;
  height: 100vh;
  width: 100vw;
  background-color: white;
}

.wireframe {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
}

.info {
  padding: 20px;
  width: 35vw;
  border-left: 1px solid #d6a24e;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.info-content {
  flex: 1;
}

.info h2 {
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6a24e;
}

.info p {
  margin: 10px 0;
  line-height: 1.6;
}

.container {
  width: 65vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  cursor: help;
}

.svg-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#interactive-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#interactive-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svg-container svg path,
#interactive-svg svg path {
  /* cursor: url("cursor/hand.png") 16 16, pointer; */
  cursor: pointer;
}

.svg-container svg path:hover,
#interactive-svg svg path:hover {
  filter: none;
  filter: invert(1);
}

h2,
p {
  padding-top: 10px;
}

.modal-overlay {
  display: none;
}

.color-indicator {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

button {
  background-color: white;
}

.reset-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 1rem;
  color: #33140f;
  border: 1px solid #33140f;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  font-family: "Times New Roman", Times, serif;
}

button.reset-button {
  padding: 5px;
}

.reset-button.visible {
  display: block;
}

.clear-hands-button {
  bottom: 60px; /* Position above reset button */
}

.content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  text-align: center;
  cursor: zoom-in;
  border: 1px solid white;
}

.content-image:hover {
  border: 1px solid #33140f;
}

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.image-modal.active {
  display: flex;
}

.modal-content {
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-modal img,
.image-modal video {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  background-color: white;
  border: 1px solid #33140f;
  cursor: grab;
  user-select: none;
}

.image-modal img:active,
.image-modal video:active {
  cursor: grabbing;
}

.image-modal img.dragging,
.image-modal video.dragging {
  cursor: grabbing;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: #33140f;
  background-color: white;
  border: 1px solid #33140f;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Times, serif;
}

button.modal-close {
  padding: 5px 10px 5px 10px;
}
