@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-VariableFont_wght.ttf");
}

body {
  font-family: Outfit, Arial, sans-serif;
  text-align: center;
  margin: 20px;
  background: #ffffff;
  color: #131515;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}




@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.loader {
  width: 120px;
  height: 20px;
  -webkit-mask: radial-gradient(circle closest-side,#000 94%,#0000) left/20% 100%;
  background: linear-gradient(#06c0f3 0 0) left/0% 100% no-repeat #ddd;
  animation: l17 2s infinite steps(6);
  margin:auto;
  left:0;
  right:0;
  top:0;
  bottom:0;
  position:fixed;
}

@keyframes l17 {
    100% {background-size:120% 100%}
}




h1 {
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 24px;
}
.divider-image {
  margin-top: 0;
  margin-bottom: 24px;
}
.header-button {
  float: right;
  display: flex;
  gap: 8px;
}
.results-data {
  padding-left: 60px;
  padding-right: 60px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #f3f5fb;
}

th,
td {
  padding: 8px;
  height: 60px;
}
tbody tr,
td {
  background: #f3f5fb;
}
tr > th {
  background: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
tr {
  border-bottom: 1px solid rgba(113, 124, 152, 0.35);
}

h2 {
  margin-top: 40px;
  text-align: left;
}

#ospUiLoginTable {
  margin-bottom: 40px;
}
.green,
.red,
.gray,
.magenta {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 400px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2px;
  width: fit-content;
  align-self: center;
  justify-self: center;
}
.green {
  background: rgba(88, 156, 5, 0.15);
  color: #589c05;
}
.red {
  background: rgba(203, 124, 6, 0.15);
  color: #cb7c06;
}
.gray {
  background: #e3e7f2;
  color: #131515;
}
.magenta {
  background: rgba(255, 0, 255, 0.15);
  color: #ff00ff;
}
button {
  font-family: Outfit;
  display: flex;
  min-height: 40px;
  max-height: 40px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #6fdcfa;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #131515;
  border-color: #6fdcfa;
}
body.dark-theme {
  background: #1e2021;
  color: #fff;
  table {
    background: #23262d;
  }
  tbody tr,
  td {
    background: #23262d;
  }
  tr > th {
    background: #1e2021;
  }
  .green {
    background: rgba(195, 255, 121, 0.15);
    color: #c3ff79;
  }
  .red {
    background: rgba(255, 95, 95, 0.15);
    color: #ff5a5a;
  }
  .gray {
    color: #fff;
    background: #2e333d;
  }
  .magenta {
    background: rgba(255, 0, 255, 0.15);
    color: #ff00ff;
  }
}
.tooltip-box {
  position: absolute;
  z-index: 9999;
  background: #222;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  white-space: pre;
  text-align: left;
  min-width: 200px;
  max-width: 600px;
  font-size: 13px;
  pointer-events: none;
  opacity: 0.98;
}

/* Ensure tooltips are visible above all other elements */
table, th, td {
  position: relative;
  z-index: 1;
}
.health-green {
  color: #4caf50;
  font-weight: bold;
}
.health-red {
  color: #f44336;
  font-weight: bold;
}

/* Column heading links styling */
th a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  padding: 2px 4px;
  border-radius: 3px;
}

th a:hover {
  background-color: rgba(6, 192, 243, 0.1);
  text-decoration: underline;
  transform: translateY(-1px);
}

th a:active {
  transform: translateY(0);
}

/* Dark theme styles for column heading links */
.dark-theme th a:hover {
  background-color: rgba(6, 192, 243, 0.2);
}


