
body, html {
    display:flex;
    flex-direction:row;
    height: 100%;
    width:100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F8F8FF; /* Dark background */
    overflow: scroll; /* Prevent scrolling on the body */
    font-size: 105%;
}



input, select, textarea{
  border-radius:12px;
  font-size:16px;
} 

a{
  cursor:pointer;
}

button {
  background-color: #005399;
  color: #F8F8FF;
  height:45px;
  font-size:100%;
  border: none;
  border-radius:12px;
  cursor: pointer;
  transition: transform 0.3s ease; 
}

button:hover {
  transform: scale(1.03); 
}



table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}


.table_header-dark {
  position:sticky;
  position:-webkit-sticky;
  top: -10px;
  z-index:2;
  background:#005399;
  color:#F8F8FF !important; 
}

.table_header {
  position:sticky;
  position:-webkit-sticky;
  top: -10px;
  z-index:2;
  background:#F8F8FF;
  color:black !important;
}


th, td {
    border: 1px solid #dddddd;
    padding: 8px;
    text-align: left;
}


.no-vertical-lines, .no-vertical-lines th, .no-vertical-lines td {
    border: 0;
    border-collapse: collapse;
    background-color: transparent;
    height: 45px;
    font-size: 1em;
}

.no-vertical-lines th {
    border-bottom: 3px solid black !important;
}

.no-vertical-lines td {
    border-bottom: 1px solid black !important; /* Horizontal line for data cells */
}

::-webkit-scrollbar {
  display:none;
  width: 0.5vw;
  height:0.5vw;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #8aa1ff; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8aa1ff; 
}

.dataTables_filter {
    margin-bottom: 10px; /* Adjust the value as needed */
}


.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  /*max-width: 400px;*/
  min-width: min-content;
}

.gsi-material-button {
  /* other properties */
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s, transform 0.3s ease;
  transition: background-color .218s, border-color .218s, box-shadow .218s, transform 0.3s ease;
}

.gsi-material-button:hover {
  transform: scale(1.03);
  background-color: WHITE !important;
}

.gsi-material-button:focus{
  background-color: WHITE;
  outline:none;
}
.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}
