/*<style>*/

.row-hover:hover {
  cursor: pointer;
  background-color:#e8f6f3 !important;
}

.row-even {
  background-color:#f8f9f9 !important;
}

.row-odd {
  background-color:#f2f4f4 !important;
}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: white; /* Add a background color to prevent content from showing through */
  z-index: 100; /* Ensure the sticky header is on top of other content */
}

.scrollable-content {
  /*height: 200px; /* Set a height to make the content scrollable */
  overflow-y: auto;
}