body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  background-color:#303030; 
  font-family: 'Comic Sans MS'; /* Playful font */
  text-align: center;
}

.container {
  padding: 0 10px 0 10px;
  margin: 0 10px 0 10px;
  background-color: #fff; /* White background for content */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 80%; /* Adjust the width */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  border-radius: 3px;
  border-color: #d457f0;
  border-style: dashed;
  
}

h1 {  /* Fun animation for the heading */
  color: #ff6699; /* Pink header */
  animation: rainbow 3s infinite;
}

p {
  color: #333; /* Dark text */
  font-size: 18px;
  border-radius: 3px;
  border-color:#33cc33;
}

@keyframes rainbow {
  0% {
    color: #ff0000; /* Red */
  }
  25% {
    color: #ff9900; /* Orange */
  }
  50% {
    color: #ffff00; /* Yellow */
  }
  75% {
    color: #33cc33; /* Green */
  }
  100% {
    color: #6666ff; /* Blue */
  }
}

/* Responsive styles */
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
}

    .decrease {
      color: crimson;
   }
   .increase {
      color: green;
   }
   /* Tooltip container */
.tooltip {
  /* position: relative;*/
  /* display: inline-block;*/
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  font-size:xx-small;
  width: 30%;
  background-color: black;
  color: #fff;
  text-align: right;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

#actuarialTable{
    height: 15%;
    overflow:scroll;
    border-radius: 3px;
  border-color:cadetblue;
}

#footer {
  position: fixed;
  border-radius: 3px;
  border-color:aqua;
   left: 0;
   bottom: 0;
   width: 100%;
   color: white;
   background-color: blueviolet;
   text-align: center;
   display:block;
   margin-bottom: 10px;
   margin-top: 10px;
  z-index: 1;
}
#output {
  border-radius: 3px;
  border-color:#6666ff;
  color:#f8f8f8;
  height: 700px;
  font-size:small;
  /* float:left; */
  width: 100%;
  max-width: 510px; */
  /* overflow: scroll; */
  display:block;
  z-index: 1;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

/* #colB{
  float: right;
  width: 30%;
  z-index: 1;
  overflow-y: hidden;
} */
#devnotes{
  display:none;
  color:#666;
  /* visibility: hidden; */
  font-size: xx-small;
  font-style: italic;
}
#resources{
  margin-top:20px;
  font-size:x-small;
}
#b1{
  display:inline;
}
#b2{
  display:inline;
}

/* Scrollbar */
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #303030;
}

#chardesc{
  font-size:medium;
  width: 90%;
  padding: 0 10px 0 10px;
  margin: 0 10px 0 10px;
}
#statroll{
  font-size:small;
}
#notes{
  font-size:x-small;
  font-style: italic;
}
.highStat{
    color: "green";
}
.lowStat{
    color: "red";
}

/*#button {
	display:none;
}*/

/*Submit button*/
button{
	border-color: #DA4398;
	border-width: 5px;
	border-radius: 15px;
	margin-top: 5px;
	padding: 0px 10px 0px 10px;
	width: auto;
	height: 58px;
	font-size: 18px;
	text-transform:uppercase;
	color: #DA4398;
	user-select: none;
	/*background-color: #57042A; Mauve*/ 
	
    background: #6B2879; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#6B2879, #28184D); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#6B2879, #28184D); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#6B2879, #28184D); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#6B2879, #28184D); /* Standard syntax */
    
	
	font-weight: 400;
	font-family: 'Raleway',sans-serif; 
}

button:hover {
  background: #d457f0;
  /*color: #E2FFBC;*/
  color: #fff;
  text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff;
  background: -webkit-linear-gradient(#d457f0, #814dfa);
  background: -moz-linear-gradient(#d457f0, #814dfa);
  background: -ms-linear-gradient(#d457f0, #814dfa);
  background: -o-linear-gradient(#d457f0, #814dfa);
  background: linear-gradient(#d457f0, #814dfa);
  -webkit-transition: 500ms linear 0s;
  -moz-transition: 500ms linear 0s;
  -o-transition: 500ms linear 0s;
  transition: 500ms linear 0s;
  outline: 0 none;
  text-decoration: none;
}