@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

html, body {
  background: #EDF0F6 !important;
  height:100%;
}

body {
  margin: 0;
  height: 100vh;
}

.content {
  background-color: #EDF0F6;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 100px 1fr 60px;
  grid-template-areas: "header header"
                       "nav main"
                       "nav footer";
}

/***** Navigation *****/
nav {
  background-color: #242C3F;
  grid-area: nav;
  width: 253px;
  position: fixed;
  left: 0;
  height: 100vh;
  padding-top:5.5em;
}

nav h2 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  padding: 10px 30px;
  padding-bottom: 0px;
  margin: 0;
}

nav > ul {
  padding: 15px 0px;
  margin: 0;
}

nav > ul li {
  list-style: none;
  height: 42px;
  padding: 0px 30px;
  margin: 0;
  cursor: pointer;
}

nav > ul li.active {
  background-color: #D14617;
}

nav > ul li:hover {
  background-color: #F55F33;
}

nav > ul a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

nav > ul a:hover {
  color: #fff;
}

.nav_icons {
  width: 22px;
  margin-right: 16px;
}

/***** Header *****/
header {
  background: #F46034;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  grid-area: header;
  height: 100px;
  position: fixed;
  width:100%;
  z-index: 2000;
}

header h1 {
  color: #fff;
  padding-left: 50px;
   font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

.profile {
  background-color: #34373E;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.profile span {
  color: #fff;
   font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

/***** Main *****/
main {
  grid-area: main;
  align-items: start;
  padding: 36px 36px 30px 50px;
}

.action-buttons a {
  margin-right: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.action-buttons .delete {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.action-buttons .delete:hover {
  background-color: #34373E;
  transition: all 0.3s;
}

.action-buttons .delete:hover > #Trash {
  fill: #fff;
  transition: all 0.3s;
}

.action-buttons .add-user,
.action-buttons .add-company,
.action-buttons .add-game,
.action-buttons .add-team,
.action-buttons .add-domain,
.update-company,
.actions {
  color: #fff;
  background-color: #F46034;
  border-radius: .25em;
  padding: .5em 1em;
}

.update-company {
  border: none;
}
.update-company:disabled {
  opacity: 0.5;
}

.action-buttons #plus:hover {
  fill: #f1960d;
  transition: all 0.3s;
}

/**** Add User Dialog ****/
.dialog-container {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
}

.dialog-container .dialog-content {
  min-width: 35em;
  transform: translateX(126.5px);
}

.dialog-container .close-dialog {
  border: none;
  background: none;
}

.dialog-container .close-dialog img {
  width: 17px;
}

.dialog-container .header {
  background: linear-gradient(90deg, rgba(221,100,57,1) 0%, rgba(241,150,13,1) 100%);
  height: 65px;
}

.dialog-container .header h2 {
  color: #fff;
   font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

.dialog-container .content {
   font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #242C3F;
}

.dialog-container .email-input {
  border: 1px solid #D14617;
  border-radius: 4px;
}

.dialog-container .email-input:focus {
  outline-color: #f1960d;
  outline-width: 1px;
  box-shadow: 0 0 0 0.25rem rgba(241, 150, 13, 0.25);
}

.dialog-container .email-input:-internal-autofill-selected {
  background-color: #fff;
}

.dialog-container .company {
  border: 1px solid #D14617;
  border-radius: 4px;
}

.dialog-container .company:focus {
  outline-color: #f1960d;
  outline-width: 1px;
  box-shadow: 0 0 0 0.25rem rgba(241, 150, 13, 0.25);
}

.dialog-container .footer {
  background-color: #EDF0F6;
}

.dialog-container #TeamSelection table {
  width:100%;
  font-weight: normal;
}

.dialog-container #TeamSelection table tr {
  background: transparent;
  padding: .5em;
}

.dialog-container #TeamSelection li {
  padding-left: 0;
  margin-left: -1em;
}

.dialog-container .footer .submit-new-user,
.dialog-container .footer .submit-new-team,
.dialog-container .footer .submit-new-game,
.dialog-container .footer .submit-new-company,
.dialog-container .footer .add-user-to-team,
.dialog-container .footer .cancel-subscription-submit
{
  background: #F55F33;
  display: inline-flex !important;
  border-radius: 4px;
  border: none;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  height: 36px;
  min-width: 36px;
  padding: 0px 12px;
  margin-right: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  transition: all 0.3s ease-in-out;
}

#CompanyAdmin, .profile_switch, #superAdmin {
  position: relative;
}

#CompanyAdmin .toggle,
#superAdmin .toggle,
.profile_switch .toggle {
  position: relative;
  height: 30px;
  cursor: pointer;
  margin-top: 4px;
}

.company_admin {
  position: absolute;
  left: 0px;
  opacity: 0;
  height: 18px;
  width:38px;
  cursor: pointer;
  z-index: 999;
}

.custom_checkbox_admin {
  position: absolute;
  left: 0px;
  height: 14px;
  width: 34px;
  background-color: #BCBCBC;
  opacity: .4;
  border-radius: 7px;
  transition: all 0.3s ease-out;
}

.custom_checkbox_admin::after {
  position: absolute;
  content: "";
  left: 0px;
  top: -2px;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: 2px solid #BCBCBC;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.3s ease-out;
}

input.company_admin:checked ~ .custom_checkbox_admin {
  background-color: rgba(245, 95, 51,.5);
  opacity: 1;
}

input.company_admin:checked ~ .custom_checkbox_admin::after {
  transform: translateX(-7px);
  opacity: 1;
  left: 24px;
  top: -2px;
  background-color: #F55F33;
  border: 2px solid #F55F33;
}

#TeamAdmin {
  position: relative;
  height: 30px;
}

#TeamAdmin .team_admin {
  position: absolute;
  top: 15px;
  left: 0px;
  opacity: 0;
  height: 18px;
  width:38px;
  cursor: pointer;
  z-index: 999;
}

#TeamAdmin .custom_checkbox_admin {
  position: absolute;
  top: 11px;
  left: 0px;
  height: 14px;
  width: 34px;
  background-color: #BCBCBC;
  opacity: .4;
  border-radius: 7px;
  transition: all 0.3s ease-out;
}

#TeamAdmin .custom_checkbox_admin::after {
  position: absolute;
  content: "";
  left: 0px;
  top: -2px;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: 2px solid #BCBCBC;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.3s ease-out;
}

#TeamAdmin input.team_admin:checked ~ .custom_checkbox_admin {
  background-color: rgba(245, 95, 51,.5);
  opacity: 1;
}

#TeamAdmin input.team_admin:checked ~ .custom_checkbox_admin::after {
  transform: translateX(-7px);
  opacity: 1;
  left: 24px;
  top: -2px;
  background-color: #F55F33;
  border: 2px solid #F55F33;
}

.disabled {
  color: #BCBCBC;
}

#SelectTeam ul {
  margin: 0;
  padding: 0;
}

#SelectTeam ul li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#SelectTeam ul li label p {
  line-height: 20px;
  font-weight: 400;
}

#SelectTeam .user_selected {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 18px;
  width: 18px;
  cursor: pointer;
  z-index: 999;
}

#SelectTeam .custom_checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #F55F33;
  transition: all 0.3s ease-out;
}

#SelectTeam .custom_checkbox::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0;
  width: 0;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(0deg) scale(0);
  opacity: 1;
  transition: all 0.3s ease-out;
}

#SelectTeam input.user_selected:checked ~ .custom_checkbox {
  background-color: #F55F33;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

#SelectTeam input.user_selected:checked ~ .custom_checkbox::after {
  background-color: transparent;
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 5px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
}

#SelectTeamMember ul {
  margin: 0;
  padding: 0;
}

#SelectTeamMember ul li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#SelectTeamMember ul li label p {
  line-height: 20px;
  font-weight: 400;
}

#SelectTeamMember .user_selected {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 18px;
  width: 18px;
  cursor: pointer;
  z-index: 999;
}

#SelectTeamMember .custom_checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #F55F33;
  transition: all 0.3s ease-out;
}

#SelectTeamMember .custom_checkbox::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0;
  width: 0;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(0deg) scale(0);
  opacity: 1;
  transition: all 0.3s ease-out;
}

#SelectTeamMember input.user_selected:checked ~ .custom_checkbox {
  background-color: #F55F33;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

#SelectTeamMember input.user_selected:checked ~ .custom_checkbox::after {
  background-color: transparent;
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 5px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
}

.dialog-container .footer .submit-new-user:hover, .dialog-container .footer .add-user-to-team:hover {
  background: #f1960d;
}

/***** Table *****/

.dataTables_wrapper {
  max-width: 99%;
}

.dataTables_filter label {
  position: relative;
  color: transparent;
  user-select: none;
}

/*!*Search bar*!*/
.dataTables_wrapper .dataTables_filter label input {
  background-image: url("../../images/users/magnifying-glass.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-color: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: inset 0px 4px 4px 0px rgba(0,0,0,0.25);
  height: 32px;
  padding: 0 12px;
  width:10em;
  max-width: 100%;
  transition: width .2s ease-in-out;
}

.dataTables_wrapper .dataTables_filter label input:focus-visible {
  outline: none;
  background-image: none;
  width:30em;
}

/***** Table *****/

.dataTables_filter label {
  color: transparent;
  user-select: none;
}




.dataTables_wrapper .dataTables_filter label input:focus-visible {
  outline: none;
}

table#users_table, table#teams_table, table#companies_table, table#games_table, table#whitelist_table  {
  margin-top: 1em;
  border-collapse: collapse;
  border: none;
  width: 100% !important;
}

table tr {
  background-color: #fff;
  border: 1px solid transparent;
}

table tr.selected {
  background-color: rgba(209,70,23,.5);
}

#users_table tr th, #companies_table tr th, #teams_table tr th, #games_table tr th, #games_table tr th {
  padding: 0 12px;
  border: none;
}

table .user_selected {
  position: absolute;
  top: 9px;
  left: 7px;
  opacity: 0;
  height: 18px;
  width: 18px;
  cursor: pointer;
  z-index: 999;
}

table .custom_checkbox {
  position: absolute;
  top: 9px;
  left: 7px;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #F55F33;
  transition: all 0.3s ease-out;
}

table .custom_checkbox::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0;
  width: 0;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(0deg) scale(0);
  opacity: 1;
  transition: all 0.3s ease-out;
}

table input.user_selected:checked ~ .custom_checkbox {
  background-color: #F55F33;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

table input.user_selected:checked ~ .custom_checkbox::after {
  background-color: transparent;
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 5px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
}

#users_table tr th, #teams_table tr th, #companies_table tr th, #games_table tr th, #whitelist_table tr th {
  position: relative;
}

#users_table thead tr .no-sorting, #teams_table thead tr .no-sorting, #companies_table thead tr .no-sorting, #games_table thead tr .no-sorting,  #whitelist_table thead tr .no-sorting  {
  background-image: none !important;
}

table tr th {
   font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400 !important;
  text-align: left;
  line-height: 1.25em;
  padding: 9px 12px !important;

}

#users_table tr td , #teams_table tr td, #companies_table tr td, #games_table tr td, #whitelist_table tr td {
  position: relative;
   font-family: Roboto, sans-serif;
  font-size: 14px;
  text-align: left;
  line-height: 1.25em;
  padding: 9px 12px;

}

table .company_admin {
  position: absolute;
  top: 9px;
  left: 17px;
  opacity: 0;
  height: 18px;
  width:38px;
  cursor: pointer;
  z-index: 999;
}

table .custom_checkbox_admin {
  position: absolute;
  top: 11px;
  left: 18px;
  height: 14px;
  width: 34px;
  background-color: #BCBCBC;
  opacity: .4;
  border-radius: 7px;
  transition: all 0.3s ease-out;
}

table .custom_checkbox_admin::after {
  position: absolute;
  content: "";
  left: 0px;
  top: -2px;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: 2px solid #BCBCBC;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.3s ease-out;
}

table input.company_admin:checked ~ .custom_checkbox_admin {
  background-color: rgba(245, 95, 51,.5);
  opacity: 1;
}

table input.company_admin:checked ~ .custom_checkbox_admin::after {
  transform: translateX(-7px);
  opacity: 1;
  left: 24px;
  top: -2px;
  background-color: #F55F33;
  border: 2px solid #F55F33;
}

.edit-user {
  display: none;
}

.user_edit {
  width: 20px;
  vertical-align: middle;
}

/***** Pagination *****/

.dataTables_info  {
  text-transform: uppercase;
  color: #242C3F;
   font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  background: rgb(250,250,250);
  padding: 1em;
  width: 100%;
  z-index: 1;
  border-radius: 0 0 .5em .5em;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.dataTables_paginate {
  margin-top:-3.25em;
}

#users_table_paginate span a,
#companies_table_paginate span a,
#teams_table_paginate span a,
#games_table_paginate span a,
#whitelist_table_paginate span a,
#audit_table_paginate span a
{
  border: none;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-right: 12px;
  padding: 0px 12px;
  text-align: center;
}

#users_table_wrapper #users_table_paginate span a.paginate_button.current,
#teams_table_wrapper #teams_table_paginate span a.paginate_button.current,
#games_table_wrapper #games_table_paginate span a.paginate_button.current,
#companies_table_wrapper #companies_table_paginate span a.paginate_button.current,
#whitelist_table_wrapper #whitelist_table_paginate span a.paginate_button.current,
#audit_table_wrapper #audit_table_paginate span a.paginate_button.current
{
  background: #F55F33;
  display: inline-flex !important;
  border-radius: 4px;
  border: none;
  align-items: center;
  color: #fff !important;
  height: 36px;
  min-width: auto;
  padding: 0px 12px;
  margin-right: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

#users_table_wrapper .dataTables_paginate .paginate_button:hover,
#companies_table_wrapper .dataTables_paginate .paginate_button:hover,
#games_table_wrapper .dataTables_paginate .paginate_button:hover,
#whitelist_table_wrapper .dataTables_paginate .paginate_button:hover,
#teams_table_wrapper .dataTables_paginate .paginate_button:hover,
#audit_table_wrapper .dataTables_paginate .paginate_button:hover
{
  background: #F55F33;
  display: inline-flex !important;
  border: none;
  border-radius: 4px;
  align-items: center;
  color: #fff !important;
  height: 36px;
  min-width: auto;
  padding: 0px 12px;
  margin-right: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
   font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

#users_table_wrapper .dataTables_paginate .paginate_button.disabled:hover,
#teams_table_wrapper .dataTables_paginate .paginate_button.disabled:hover,
#games_table_wrapper .dataTables_paginate .paginate_button.disabled:hover,
#whitelist_table_wrapper .dataTables_paginate .paginate_button.disabled:hover,
#companies_table_wrapper .dataTables_paginate .paginate_button.disabled:hover,
#audit_table_wrapper .dataTables_paginate .paginate_button.disabled:hover
{
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  margin-right: 4px;
}

#users_table_next::hover,
#companies_table_next::hover,
#games_table_next::hover,
#whitelist_table_next::hover,
#teams_table_next::hover,
#audit_table_next::hover
{
  margin-right: 0;
}

#audit_table_filter {
  margin-bottom: 7px;
}

/***** Footer *****/
footer {
  grid-area: footer;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 50px;
  padding-bottom: 30px;
  padding-right: 40px;
}
#users_table tbody tr#UserRow.checkbox-selected {
  background-color: rgba(255,175,147,0.70);
}

#users_table tbody tr:hover,
#teams_table tbody tr:hover,
#games_table tbody tr:hover,
#whitelist_table tbody tr:hover,
#companies_table tbody tr:hover,
#audit_table tbody tr:hover
{
  background-color: rgba(255,173,147, .7);
  position: relative;
  z-index: 999;
  cursor: pointer;
}

#Taskbar {
  background-color: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  height: 48px;
  opacity: 0;
  padding: 0px 12px;
  transition: all .5s ease-in-out;
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 2;
}

#Taskbar p {
  color: #fff;
   font-family: Roboto, sans-serif;
  font-size: 14px;
  margin-right: 50px;
  margin-bottom: 0px;
}

#Taskbar button {
  border: none;
  background-color: transparent;
  color: #FFAF93;
  text-transform: uppercase;
   font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.card.profile_card {
  display: grid;
  grid-column-gap: 2em;
  background: transparent;
  border: none;
  border-radius: 0;

}

.card.profile_card label, .card.profile_card h3 {
  display: block;
  font-weight: bold;
  margin-bottom: .25em;
  font-size: 1em;
}
.card.profile_card input, .card.profile_card p {
  padding: .5em;
  width: 100%;
  max-width:25em;
}

.card.profile_card input[type='checkbox'] {
  width: 2.25em;
}

.card.profile_card input {
  box-shadow: inset 0px 4px 4px 0px rgb(0 0 0 / 25%);
  border-radius: .25em;
  border: none;
  background: #fff;
}

.card.profile_card .company_admin {
  top:30px;
}

.card.profile_card input:disabled {
  background: transparent;
  padding: .5em 0;
  box-shadow: none;
}

.card.profile_card p {
  padding:0
}

.table_header {
  background: #242C3F;
  color: #fff;
}

section {
  margin-bottom: 2em;
}

section h3 {
  font-size: inherit;
  font-weight: bold;

}

.action-buttons {
  position: absolute;
  right:3em;
  z-index:1;
}

.dataTables_wrapper .dataTables_filter {
  float: none !important;
  margin-right: 11em;
}

#users_table_filter, #games_table_filter, #teams_table_filter {
  margin-right:9.5em;
}

#whitelist_table_filter {
  margin-right: 15.5em;
}


.datatable h3 {
  position: absolute;
  margin-top: .75em;
  margin-left: 5em;
}

.profile_form {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 1em;
}

.context_menu {
  position: fixed;
  margin: 0;
  padding: 0;
  border:1px solid #ccc;
  background:#fff;
  font-size: .8em;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 999;
}

.context_menu li {
  list-style: none;
  padding: .5em 1em;
  border-bottom: 1px solid #ccc;
}

.context_menu li:hover {
  background: #F46034;
  cursor: pointer;
  color:#fff;
}

.card.profile_card input[type="button"] {
  background: #D14617;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color:#fff;
  width: auto;
  padding: 1em;
}

.card.profile_card input[type="button"]:hover {
  background: #F55F33;
}


/** Export data buttons **/
.dt-buttons {
  position: absolute;
  margin-bottom: 16px;
  z-index: 1001;
}

.dt-buttons .dt-button {
  background: #fff;
  display: inline-flex !important;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666 !important;
  height: 36px;
  min-width: 32px;
  padding: 0px 12px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  text-decoration: none;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  transition: all 0.3s;
}

.dt-buttons .dt-button:hover {
  background:#34373E;
  border: none;
}

.dt-buttons .dt-button:hover span {
  color: #fff;
}

.dt-buttons .dt-button span {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  transition: all 0.3s;
}

/** Show entries **/
.dataTables_length {
  margin-left: 16px;
  position: relative;
  top: 5px;
  z-index: 1001;
}

.dataTables_length label {
  text-transform: uppercase;
  color: #242D40;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.dataTables_length label select {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.dataTables_length label select:focus-visible {
  outline-color: #6c757d;
  outline-width: 1px;
  border: 1px solid #6c757d;
}

.intro_text {
  padding-bottom:1em;
}

.dataTable {
  text-transform: capitalize;

}

.dataTable tr td:first-of-type {
  text-transform: none;
}

.page-help {
  background: rgba(255,100,0,.2);
  padding: 1em .75em;
  color: #D14617;
  border: 2px solid rgba(255,100,0,.3);
  border-radius: 0.25em;
  margin: 0 0 2em 0;
  font-size: .8em;
  line-height: 1em;
}

.dt-buttons {
  position: absolute;
  visibility: hidden;
}

.fa-cloud-download, .download-help {
  position: absolute;
  font-size: 1.24em;
  margin-top: 0.5em;
  cursor: pointer;
  z-index:999;
  color: #000;
}

.download-help a {
  color: #000;
}

.fa-cloud-download:hover, .download-help:hover {
  color: #D14617;
}

.download-help {
  margin-left:2em;
}

.download_tooltip {
  position: absolute;
  background: #F46034;
  color: #fff;
  font-size: .8em;
  padding: 5px 7px;
  border-radius: 5px;
  opacity: .9;
  box-shadow: rgb(0 0 0 / 50%) 0 0 0.5em;
  width: 15em;
  z-index:999;
  margin-left:5.5em;
  margin-top:.25em;
  display: none;
}

.verticle-padded {
  padding: 10px 0;
}
.inline-block {
  display: inline-block;
}

/* Announcements */
.announcement.alert {
  background-color: #CF2812;
  color: white;
}
.announcement.warning {
  background-color: #F1C70C;
  color: black;
}
.announcement.info {
  background-color: #0D5ED8;
  color: white;
}
.announcement a:hover { 
  color: inherit;
}