/* To be used in conjunction with PageBuildShortcuts.js */

.genericList
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.genericTitleHolder
{
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.genericSubtitleHolder
{
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

@media only screen and (max-width: 600px) {
  .genericTitleHolder
  {
    font-size: 30px;
  }

  .genericSubtitleHolder
  {
    font-size: 20px;
  }
}

@media not screen and (max-width: 600px) {
  .genericTitleHolder
  {
    font-size: 50px;
  }

  .genericSubtitleHolder
  {
    font-size: 30px;
  }
}

.genericButton
{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
  color: white;
  background-color: #2244bb;
  margin: 5px;
  text-decoration: none;
}

.createButton
{
  background-color: #22bb33;
}

.saveButton
{
  background-color: #1188dd;
}

.deleteButton
{
  background-color: #ff3333;
}

.pageHoldingDiv
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inputWithTextHolder
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.displayTableCell
{
  width: 100px;
  display: block;
  border-right: rgba(180, 180, 180, 0.1) 1px solid;
  border-bottom: rgba(180, 180, 180, 0.8) 1px solid;
  padding: 5px;
  overflow-wrap: break-word;
  overflow: auto;
}

.displayTableRow
{
  display: flex;
  width: 100%;
}

.displayTableHeaderRow
{
  background-color: #1188dd;
  color: white;
}

.displayTableHolder
{
  display: flex;
  flex-direction: column;
  max-width: 80vw;
  min-width: 200px;
  overflow-x: auto;
  border: 1px solid slategrey;
  border-radius: 3px;
  box-shadow: 0px 3px 3px #cccccc inset;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-height: 80vh;
  overflow-y: auto;
}

.displayTableButton
{
  font-size: 14px;
}

.standardVerticalSpacer
{
  height: 30px;
}

.smallVerticalSpacer
{
  height: 5px;
}
