:root {
  --sas-login-form: #1e2530;
  --sas-header: #212733;
  --sas-background: #0d0f14;
  --sas-form-button: #2476e0;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

input {
  font-size: 14px !important;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.user-account {
  display: flex;
  align-items: center;
  color: #fff;
}

.user-account svg {
  fill: #fff;
}

.user-name {
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
}

.user-name:hover {
  text-decoration: none;
  color: #fff;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

/* Styles for the search input */
.custom-input {
  border: none;
  width: 256px;
  height: 30px;
  background-color: #efefef;
  padding: 5px;
  box-sizing: border-box;
  margin-right: 5px;
  outline: none;
}

/*.custom-input:focus {}*/
.table-padding td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.bottom-content {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: auto;
}

.centered-text {
  margin-bottom: 10px;
  font-size: 16px;
  color: #FFF;
}

.bottom-image {
  width: 48px;
  margin: 0 auto;
  animation: moveDownUp 3s ease-in-out infinite;
}

.bottom-image img {
  width: 100%;
}

@keyframes moveDownUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
/* Styles for the search button */
.custom-button {
  width: 39px;
  height: 30px;
  background-color: #2476e0;
  color: #fff;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect for the button */
.custom-button:hover {
  background-color: #2476e0;
}

/* Adjust the height of the main content area */
.main {
  padding-top: 150px;
  min-height: calc(100vh - 50px);
}

.overlay {
  position: fixed;
  width: 40%;
  height: 100%;
  color: black;
  background-color: white;
  z-index: 1;
  top: 0;
  right: -100%;
  /*pointer-events: none;*/
  transition: right 0.4s ease-out;
}

.overlay.slide-in {
  right: 0;
}

.close-button {
  position: absolute;
  top: 125px;
  left: -28px;
  width: 28px;
  height: 28px;
  color: black;
  background-color: white;
  cursor: pointer;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: white;
  box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Center the circle button while keeping it in the document flow */
.footer > div:first-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Ensure the AWS logo is on the right */
.footer > div:last-child {
  margin-left: auto;
  padding-right: 15px;
}

.footer .circle-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2476e0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer .circle-button svg {
  fill: white;
  width: 50%;
  height: 50%;
}

.footer .circle-button-ads {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fd9a1d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer .circle-button-ads svg {
  fill: white;
  width: 50%;
  height: 50%;
}

/* Style adjustments for the AWS logo  */
.footer div img {
  height: auto;
  width: auto;
}

.top-header {
  background-color: var(--sas-header);
}

.top-sub-header {
  top: 65px;
  height: 60px;
  background-color: white;
  box-shadow: 0px 6px 10px 6px rgba(0, 0, 0, 0.4);
}

main > .container {
  padding: 60px 15px 0;
}

/* Style for the left logo */
.left-logo img {
  max-width: 212px;
}

/* Custom CSS for centering middle logo */
.navbar-brand:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

table tbody tr {
  transition: background-color 0.6s ease-out, color 0.3s ease;
}

table {
  border-spacing: 0px !important;
  -webkit-border-horizontal-spacing: 0px !important;
  -webkit-border-vertical-spacing: 0px !important;
  border-color: none !important;
}
table thead {
  color: white;
  font-weight: bolder;
}
table tbody td span {
  margin-left: 15px;
}
table tbody td i.active {
  color: red;
}
table tbody td i.unactive {
  color: white;
}
table tbody tr:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

.manual-hover {
  background-color: white;
  color: black;
  cursor: pointer;
}
