body {
  font-family: sans-serif;
  padding: 20px;
}

.open-modal {
  padding: 6px 12px;
  background-color: #82521F;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #C27A2E;
}


.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 400px;
  border-radius: 6px;
  position: relative;
}

.close {
  position: absolute;
  right: 10px; top: 10px;
  font-size: 20px;
  cursor: pointer;
}

.case-list {
  font-size: 14px;
  margin-bottom: 10px;
}

input[type="text"] {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
}

input.compact-input {
  width: auto;
}


.download-btn {
  background-color: #82521F;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}