:root {
  --main-color: #2c3e50;
  --secondary-color: #00aaff;
  --light-grey: #edf2f9;
  --light-lilac: #f7f8ff;
  --text-color: #242424;
  --border-color: rgba(0, 0, 0, 0.125);
  --box-shadow: rgba(0, 0, 0, 0.3);
  --opaque-background: #91abc6;
  --background-dark: #2765a2;
  --opaque-border-light-blue: #8bc4ff;
  --main-background: #edf2f9;
}

body,
.content {
  min-height: 100vh;
  background: var(--light-grey);
  display: grid;
  align-content: space-between;
  grid-template-rows: auto 1fr auto;
}

h1,
a,
button,
span,
.native-table-footer,
.native-table-head {
}

a {
  color: var(--text-color);
}

header {
  width: 100vw;
  min-height: 68.55px;

  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  align-items: center;
  border-bottom: 2px solid var(--secondary-color);
  background: var(--main-color);
  font-size: 14px;
}

.head-bg {
  display: none;
}

.brand-container {
  grid-row: 1;
  grid-column: 1;
  width: fit-content;
}

.description {
  display: none;
}

nav {
  grid-row: 1;
  grid-column: 3;
  width: 400px;
  box-shadow: none;
  background: none;
  border: none !important;
  text-transform: uppercase;
}

nav li {
  border-left: none;
  border-right: none;
}

nav li a {
  text-shadow: none;
}

nav li:hover {
  background: none;
}

nav li a:hover {
  color: var(--secondary-color);
}

.content-home {
  justify-content: normal !important;
}

.paste-list {
  border: none;
  width: 100%;
}

.paste-list a {
  font-size: 0.65em;
  font-weight: bold;
}

.paste-list a:hover {
  color: var(--secondary-color);
}

.paste-list li {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  margin: 5px;
  display: grid;
  padding: 14px 20px;
}

.paste-list li:nth-child(1):hover {
  border: 2px solid var(--secondary-color);
}

.paste-list li:hover {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.paste-list li:nth-child(1) {
  border-top: 2px solid var(--border-color);
}

nav:empty {
  display: none;
}

.content-home {
  grid-gap: 0px;
}

footer {
  height: 66px;
  display: grid;
  place-content: center;
  color: var(--white-color);
  background: var(--main-color);
  border-top: 2px solid var(--secondary-color);
  margin: 0px;
}

.pagination {
  background: var(--white-color);
  padding: 6px;
  border-radius: 25px;
  box-shadow: 0 1px 3px 0 var(--box-shadow);
  justify-content: space-around;
  grid-gap: 0px;
  margin-top: 7px;
}

.pagination a {
  border-radius: 5px;
  cursor: pointer;
  padding: 0px;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}

.pagination li {
  box-shadow: inset 0 0 4px var(--box-shadow);
  border-radius: 15px;
  width: 40px;
  text-align: center;
  display: grid;
  place-content: center;
  height: 40px;
  position: relative;
  margin: 0px 5px;
}

.pagination li:nth-child(12) {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}

.pagination li:nth-child(1) {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

.pagination li a:hover {
  color: var(--white-color);
  transform: color;
  transition: 0.3s;
  z-index: 2;
}

.pagination li a::before {
  content: "";
  background-color: var(--secondary-color);
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  filter: blur(1px);
  transition: all 0.3s;
}

.pagination li a:hover::before {
  height: 100%;
  filter: blur(0);
  box-shadow: inset 0 0 4px var(--box-shadow);
  border-radius: 15px;
}

.pagination li:nth-child(12) a:hover::before {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}

.pagination li:nth-child(1) a:hover::before {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

footer a {
  color: var(--white-color);
}

.tab_container {
  background: var(--light-lilac);
}

.tabs li div {
  background: var(--opaque-background);
  color: var(--main-color);
}

.tabs li.active,
.tabs li.active > div {
  background: var(--main-color);
  color: var(--white-color);
}

button,
.btn {
  background: var(--main-color);
  border: 1px solid var(--border-color);
}

.btn:hover {
  background: var(--background-dark);
}

button:hover {
  background: var(--background-dark);
}

.tab_content textarea {
  min-height: 30vh;
}

.paginate_button {
  border: none;
}

.pagination.right a {
  width: 35px;
  height: 35px;
  box-shadow:
    inset 0 1px 3px var(--box-shadow),
    0 1px 4px;
  box-shadow: inset 0 0 4px var(--box-shadow);
  border-radius: 15px;
  margin: 5px 10px;
  position: relative;
}

.pagination.right .paginate_button::before {
  content: "";
  background-color: var(--secondary-color);
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  filter: blur(1px);
  transition: all 0.3s;
}

.pagination.right .paginate_button:hover::before {
  height: 100%;
  filter: blur(0);
  box-shadow: inset 0 0 4px var(--box-shadow);
  border-radius: 15px;
}

.pagination.right .paginate_button:hover {
  color: var(--white-color);
  transform: color;
  transition: 0.3s;
  z-index: 2;
}

.pagination.right .paginate_button:hover::before {
  height: 100%;
  filter: blur(0);
  box-shadow: inset 0 0 4px var(--box-shadow);
  border-radius: 15px;
}

.menu-option {
  background: var(--light-lilac);
}

.menu-option:hover {
  background: var(--opaque-background) !important;
  color: var(--white-color);
}

form,
.grey-box {
  background: var(--light-lilac);
}

.bottom-badge,
.admin-nav {
  background: var(--opaque-background);
  border: 1px solid var(--opaque-border-light-blue);
}

.admin-nav a {
  color: var(--white-color);
}

.bottom-badge {
  background: none;
  border: 1px solid var(--border-color);
}

.jdbtn {
  border: 1px solid var(--secondary-color) !important;
  background: var(--light-grey) !important;
  color: var(--background-dark) !important;
}

@media only screen and (max-width: 768px) {
  nav {
    grid-row: 2;
    grid-column: 1;
    height: auto;
    background: var(--main-color);
    width: 100vw;
    z-index: 1;
    display: none;
    border-bottom: 1px solid var(--secondary-color) !important;
  }

  .nav_switch {
    display: block;
  }

  .nav_switch ul li {
    border-top: 1px solid var(--border-color);
    width: 100vw;
    text-align: center;
    padding: 20px 10px;
  }

  nav ul {
    grid-template-rows: repeat(auto-fit, minmax(0px, auto));
    grid-template-columns: auto;
    justify-content: center;
    padding-top: 15px;
  }

  header {
    grid-template-rows: auto auto;
    grid-template-columns: auto;
  }

  .container-hamburger {
    grid-row: 1;
    display: grid;
    justify-content: end;
    height: 50px;
    align-content: center;
    grid-column: 1;
  }

  .bar {
    width: 50px;
    height: 8px;
    background: var(--white-color);
    border-radius: 5px;
    margin: 3px 10px;
  }

  .pagination {
    justify-content: normal;
    grid-gap: 5px;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fill, 40px);
  }
}
