* {
    box-sizing: border-box;
  }

.button {
    display: inline-block;
    background: beige;
    border: 1px solid #552200;
    border-radius: 5px;
    margin: 0;
    padding: 5px;
}

.plus {
    background: none;
    color: green;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.notes {
	min-width: 270px;
}

.plus_cell {width: 5%;
		   }

.cell_right {
	text-align: right;
	width: 5%;
	white-space: nowrap;
}
.cell_right_and_pad {
	text-align: right;
	width: 5%;
	white-space: nowrap;
	padding-right: 5px;
	padding-left: 5px
}
.stat_heading {
    padding: 0 15px 0 0;
    font-weight: bold;
}

.form_number {
    width: 35pt;
    text-align: right;
    border-radius: 5px;
    border: 1px solid #552200;
}

.wide_number {
    width: 40pt;
    border-radius: 5px;
    border: 1px solid #552200;
    text-align: right;
}

.short_string{
    width: 60pt;
    border-radius: 5px;
    border: 1px solid #552200;
}

.tooltip {
  position: relative;
  display: inline-block;
}

/* Stat Multiple tooltip text */
.stattooltiptext {
  visibility: hidden;
  background-color: #2B1100;
  min-width: 100px;
  color: #fff;
  text-align: center;
  padding: 5px 10px 5px 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.6s;
}

/* Skill Roll tooltip text */
.skilltooltiptext {
  visibility: hidden;
  background-color: #2B1100;
  color: #fff;
  text-align: center;
  padding: 5px 10px 5px 10px;
  border-radius: 6px;

  /*Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip 
  opacity: 0;
  transition: opacity 0.6s;*/
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden;
  background-color: #2B1100;
  min-width: 300px;
  color: #fff;
  text-align: left;
  padding: 5px 10px 5px 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 3;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.6s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2B1100 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Show stat tooltip text when you mouse over the tooltip container */
.tooltip:hover .stattooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Show stat tooltip text when you mouse over the tooltip container */
.skilltooltiptext {
  visibility: visible;
  opacity: 1;
}

.altered_stat {
    color: #0066aa !important;
}

.outer_box { 
  padding: 5px;
  width: 100%;
  float:left;
}

.inner_box {
  border: solid white 5px;
  border-radius: 10px;
  padding: 5px;
  width: 100%;
  float:left;
}

.save_box {
  border: solid white 5px;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
}

