:root {
    /* GENERAL */
    --font-family: system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        "Liberation Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    --fs-M: 16px;
    --fw-M: 400;
    --fc: black;

    /* SPLASH SCREEN */
    --splash-height: 100vh;
    --splash-width: 100vw;
    --splash-background-url: url(../image/background.jpeg);
    --splash-blur: 6px;
    --splash-basic-margin: .4em;
    --splash-basic-padding: .3em;
    --splash-error-color: rgb(134, 0, 0);
    --splash-error-style: italic;
    --splash-input-bc: rgba(75, 75, 75, 0.426);
    --splash-input-border-color: white;
    --splash-input-border-size: 2px;
    --splash-input-border-radius: 5px;
    --splash-input-font-color: white;
    --splash-button-bc: transparent;
    --splash-button-border-color: #1e5109;
    --splash-button-border-size: 2px;
    --splash-button-border-radius: 6px;
    --splash-button-fc: #1e5109;
    --splash-button-fs: 18px;
    --splash-button-fw: 500;
    --splash-button-bc-hover: #1e5109;
    --splash-button-fc-hover: white;
    --splash-logo-url: url(../image/logo-EES.png);
    --splash-title-fs: 37px;
    --splash-title-fw: 700;

    /* NAVBAR */
    --nav-height: 10vh;
    --nav-bc: white;
    --nav-fc: rgb(49, 49, 49);
    --nav-fc-hover: rgba(75, 75, 75, 0.426);
    --nav-before-bc: rgba(75, 75, 75, 0.426);
    --nav-before-size: 1px;
    --nav-fw: 500;
    --nav-fs: 18px;
    --nav-logo-url: url(../image/logo-EES.png);
    --nav-basic-padding: .5em;
    --nav-basic-margin: .5em;
    --nav-basic-transition-duration: .5s;
    --nav-basic-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --nav-underline-size: 0%;

}

/*** Table Styles **/

.table-fill {
  background: white;
  border-radius:3px;
  border-collapse: collapse;
  height: 320px;
  margin: auto;
  max-width: 600px;
  padding:5px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}
 
th {
  color:#1b1e24;
  background: white;
  border-bottom:4px solid #9ea7af;
  border-right: 1px solid #343a45;
  font-size:16px;
  font-weight: 550;
  padding:12px;
  text-align:center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align:middle;
}

th:first-child {
  border-top-left-radius:3px;
}
 
th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}
  
/*
tr {
  border-top: 1px solid #C1C3D1;
  border-bottom: 1px solid #C1C3D1;
  font-size:16px;
  font-weight:normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
 
tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}
 
/* tr:nth-child(odd) td {
  background:#EBEBEB;
}
 
tr:nth-child(odd):hover td {
  background:#4E5066;
} */

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}
 
tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}
 
td {
  /* background:#FFFFFF; */
  padding:20px;
  text-align:middle;
  vertical-align:middle;
  font-weight:300;
  font-size:16px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #C1C3D1;
}

td:last-child {
  border-right: 0px;
}

th.text-left {
  text-align: left;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: right;
}

td.text-left {
  text-align: left;
}

td.text-center {
  text-align: center;
}

td.text-right {
  text-align: right;
}