/* General css */

body {
  font-family: Optima;
  font-size: 14px;
  background-color: #f0f0e8;
}

input {
  font-size: 12px;
}
button {
  font-size: 12px;
}
select{
  font-size: 12px;
}

a {
  color: #053769;
}

/* tables */ 
th, td {
  padding: 5px;
  border-bottom: 1px solid #ddd;
}

ul {
  list-style-type:none; 
  padding-inline-start: 0px;
}
li {
  margin-bottom: 0.5rem;
}

.pure_btn {
  background-color: inherit;
  border: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.short {
  width: 40px;
}

.center_in_box {
  margin: auto;
  margin-top: 5em;
  width: 80%;
  min-width: 45em;
  border: 2px solid black;
  padding: 50px;
  text-align: center;
  background-color: rgba(163, 180, 196, 0.5);
  color: #053769;
}
.center_in_box h1 {
  color: #ffffff;
  margin-bottom: 3rem;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* topnav */ 
.active {
  background-color: rgba(163, 180, 196, 0.5);
}


/* animal-data table */
.err {
  color: #992e32;
}

.not_stored {
  background-color: #992e32;
}
.error_in_stored {
  background-color: purple;
}
.no_error {
  background-color: rgb(201, 209, 213);
}

.mod {
  padding: 0.5rem;
}
.thick {
  font-size: 18px;
  font-weight: bold;
}
.small {
  font-size: 12px;
  padding: 0.3rem;
}

.u {
  text-decoration-line: underline;
}

.mod:hover {
  cursor: pointer;
}

/* input */ 
.date_suggest {
  color: #b5b5b5;
}

/* graph */ 
.graph {
  margin-top: 1em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #b5b5b5;
}

/* modal */
dialog {
  height: 300px;
  width: 80%;
  border: 2px solid black;
  padding: 20px;
  text-align: center;
  background-color: #f0f0e8;
  color: #053769;
}

.notes_txt {
  margin-bottom: 10px;
}

.mini_icon {
  padding: 5px;
  font-size: 17px !important;
  cursor: pointer;
}

.overlay {
  display: none;
  position: absolute;
  right: 5px; /*newly added*/
  top: 5px;/*newly added*/
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(2px);
}

.month_picker_year {
  border: 0;
}
.month_picker_month {
  margin-left: -0.2rem;
  border: 0;
}

.hide-column {
  display: none;
}
