@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

thead {
    text-align: center;
}

table {
    thead {
        text-align: center;
    }
}

.enemy-card {
  height: 400px;
}
.enemy-card-header {
  height: 10%;
}

.enemy-card-description {
  padding: 0px;
  margin: 0px;
}

.enemy-card-content {
  height: 78%;
  padding: 0.15in;
}

.enemy-card-footer {
  height: 12%;
}

#enemy-card-footer-item {
  margin: 0px;
}


.tooltip-text {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted rgb(196, 191, 191);
  cursor: pointer;
}

/*CSS Variables*/
:root {
  --game-term-color: rgb(18, 102, 18);
  --player-term-color: #2d2d79;
  --dialogue-color: rgb(88, 28, 13);
}

@media (prefers-color-scheme: dark) {
  :root {
    --game-term-color: rgb(99, 194, 99);
    --player-term-color: #5858c5;
    --dialogue-color: rgb(228, 139, 56);
  }
}

.title {
  margin-top: 24px;
  margin-bottom: 12px;
}

.hcenter {
  text-align: center;
}

.game-term {
  font-style: normal;
  font-weight: bold;
  color: var(--game-term-color);
}

.player-term {
  font-style: normal;
  font-weight: bold;
  color: var(--player-term-color);
}

.dialogue-name {
  font-style: italic;
  font-weight: bold;
  color: var(--dialogue-color);
}

.multicolumn-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.examples {
  margin: auto;
  width: 95%;
  padding: 10px 10px 24px 10px;
  border-radius: 5px;
  border-width: 1px;
  border-style: dotted;
}

.dialogue {
  margin: auto;
  width: 85%;
  padding: 10px 10px 24px 10px;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
}

.page-end-whitespace {
  height: 250px;
}

/* fix margins on nested ul lists when the list item it's contained in has other elements*/
.content li ul:not(:first-child) {
  margin-top: .25em;
}

.feat-card {
  width: 3in;
  height: 3.5in;
}

.feat-card-header {
  text-align: left;
  height: 20%;
}

.feat-card-description {
  font-size: 10pt;
  line-height: 11pt; 
  text-align: left;
  overflow-y: scroll;
  height: 68%;
}

.feat-card-content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 80%;
}

.feat-card-content hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.ability-card {
  width: 3.5in;
  height: 3.5in;
}

.ability-card-header {
  height: 20%;
  text-align: left;
}

.ability-card-description {
  font-size: 10pt;
  line-height: 11pt; 
  text-align: left;
  overflow-y: scroll;
  height: 68%;
}

.ability-card-content {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 60%;
}

.ability-card-content hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

#ability-card-footer-item {
  font-size: 10pt;
  text-align: center;
  line-height:11pt;
}

.ability-card-footer {
  font-size: 10pt;
  line-height: 10pt;
  height: 20%;
}

ul.requirements-list:not(:first-child) {
  margin-top: 0;
}

ul.requirements-list {
  font-size: 10pt;
  line-height: 10pt;
  margin-left: 1em;
  overflow-y: scroll;
  max-height: 25%;
  list-style-type: disc;
}

li.requirements-list {
  font-size: 10pt;
  line-height: 10pt;
  list-style-type: disc;
}

.card-header-type {
  align-content: flex-end;
  height: 48px;
}


/* allows <div class="p"> to behave the same as <p> 
   this is useful due to HTML spec limitations on <div> tags within <p> tags */
.p {
  margin: 0;
  padding: 0;
}

/* allows <div class="p"> to behave the same as <p> 
   this is useful due to HTML spec limitations on <div> tags within <p> tags */
.p:not(:last-child) {
  margin-bottom: var(--bulma-content-block-margin-bottom);
}

.tippy-content {
  background-color: transparent;
  padding: 0px;
}

.tippy-box {
  background-color: transparent;
}

.tippy-arrow {
  color: var(--bulma-background);
}