body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

header {
  background-color: #eeeeee;
  color: #000000;
  padding: 1px;
  text-align: center;
  height: 66px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.homepage-header {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.browseFormContent {
    display: flex;
    gap: 12px;
}

.browseFormSection {
  text-align: center;
  display: grid;
}

.browseFormSectionTip {
    color: gray;
    font-size: 12px;
}

.papyrus-controls-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: auto;
}

.papyrus-controls-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: auto;
}

.papyrus-controls button {
  margin: 5px;
  padding: 10px;
  background-color: #555;
  color: #fff;
  border: none;
  cursor: pointer;
}

.papyrus-controls button:not(.startDisabled):hover {
  background-color: #777;
}

.pagination-controls {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}