/* Table Search Styling */
.tblsrcdiv {
  margin-bottom: 15px;
  padding: 10px;
}

.tblsrclabel {
  color: var(--white);
  font-weight: 600;
  /* text-transform: uppercase; */
  font-size: 14px;
  display: block;
  /* margin-bottom: 8px; */
}

.tblsrc {
  padding: 10px 15px;
  border: 1px solid rgba(0, 183, 255, 0.3);
  border-radius: 6px;
  background: var(--background);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  margin-left: 10px;
}

.tblsrc:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.3);
}

.table-scroll {
  overflow-x: auto;
  width: 100%;
}

.sticky-header {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.sticky-header th {
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  /* text-transform: uppercase; */
  font-weight: 600;
}

.sticky-header td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 183, 255, 0.2);
  color: var(--textLight);
}