:root{
  --datatable-search-border-color: #ddd;
}
/* Dark mode */
[data-style="dark"]{
  --datatable-search-border-color: rgba(255, 255, 255, 0.09);
}

.datatable-search:focus {
    outline: none !important;
    border-color: var(--datatable-search-border-color) !important;
}

.icon-circle {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  /* Move the circle upwards */
  background-color: white;
  /* Ensure background matches modal */
}

.dark-style .icon-circle {
  background-color: #312d4b;
}