body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #5E6278;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 30px !important;
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929F;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929F;
}


#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.outer {
  box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
  border: 5px solid #d9dee3;
  border-radius: 6px;
}

.btn-primary {
  background-color: #4a90e2 !important;
}

.btn-secondary {
  background-color: #6f6b7d !important;
  color: #fff !important;
}

/* Table */
.table {
  border-collapse: separate; /* allows radius */
  border-spacing: 0;
  width: 100%;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden; /* keeps rounded corners visible */
}

/* Header */
.table thead th{
  background-color: #2c5aa0;
  color: #fff !important;
  text-align: center;
  vertical-align: middle;
}

.table thead th:first-child {
  border-bottom-left-radius: 12px !important;
}

.table thead th:last-child {
  border-bottom-right-radius: 12px !important;
}

/* Body row striping */
.table tbody tr:nth-child(odd) {
  background-color: #f1f5f9;
}

.table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Bottom corners */
.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 6px 8px;
    border-radius: 5px;
    position: absolute;
    top: -35px;
    /* Position above the input */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  .loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}