*,
*:before,
*:after {
  box-sizing: border-box;
  direction: rtl;
  font-family: "Arimo", sans-serif;
}

/* CUSTOM VARIABLES */
:root {
  --main-text-primary: rgba(32, 33, 37, 1);
  --main-text-secondary: rgba(32, 33, 37, 0.64);
  --main-text-third: rgba(32, 33, 37, 0.4);
  --main-background-color: rgba(255, 255, 255, 1);
  --main-border-light: rgba(32, 33, 37, 0.12);
  --main-link: #009de0;
  --main-link-active: #33b1e6;
  --main-link-hover-focus: #1fa9e4;
  --main-font-family: "Arimo", sans-serif;
  --shadow-one: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-two: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  --shadow-three: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  --shadow-four: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  --shadow-five: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);

  --main-padding: 0 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.preloader {
  align-items: center;
  background: rgb(23, 22, 22);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s linear;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.spinner_wrapper {
  position: sticky;
  top: 50%;
  background-color: #fff;
  width: 150px;
  height: 150px;
  z-index: 20;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #03fc84;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.header {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  height: auto;
  position: sticky;
  top: 78px;
  background: #ffffff;
}
.nav {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  height: 80px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  /*position: sticky;
  top: 0%;
  z-index: 10;*/
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-width: 280px;
  background: #fff;
  order: 1;
}
.menu > ul {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
}

.menu > ul > li {
  margin: 0 1rem;
}

.logo {
  width: 150px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0 0.3rem;
  order: 0;
}
.logo > img {
  width: 100%;
  height: auto;
}

.link {
  text-decoration: none;
  color: #525759;
}

.link_active {
  color: #007fff;
  font-weight: bold;
}

.link:hover {
  color: #007fff;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.events_table_header_date {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 0.5px solid grey;
}
.events_table_header_stats {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 0.5px solid grey;
}
.events_table_header_filters {
  margin: 0.5em 0;
  padding: 1em;
  border: 0.5px solid grey;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
}

.events_section_button {
  width: 120px;
  height: 35px;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 5px;
  align-content: center;
  padding: 0.5em;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-weight: medium;
  font-size: 16px;
  cursor: pointer;
}

.events_section_button_active {
  background: Dodgerblue;
  color: #ffffff;
  box-shadow: none;
}

.filters {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  height: 50px;
  background: magenta;
}
.filters > ul {
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form_grey_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: hsla(217, 13%, 74%, 0.54);
}

.events {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.event {
  width: 450px;
  margin: 1rem 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  border: 1px solid black;
}

.hide {
  display: none;
}

.main_event_wrapper {
  background-color: #fff;
  margin: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 10px;
  overflow-x: scroll;
}

.main_event_input {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  margin: 0.5rem 0;
}

.main_event_input_label {
  font-weight: bold;
  color: #007fff;
  margin: 0 0.3rem 0 0;
}

.item {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: blue;
}

.dates {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0.5rem;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: 0.5px solid grey;
  height: 30px;
  width: 80px;
  pointer-events: none;
}
.button-wrapper .button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
  pointer-events: initial;
  text-decoration: none;
}

.artist_name_input {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.plus_button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 25%;
  bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.plus_button:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.plus_button:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.popup_artist_form {
  position: absolute;
  visibility: hidden;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  height: auto;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  top: 10%;
  background: #fff;
  border-radius: 10px;
  /*overflow-y: scroll;*/
  z-index: 2000;
}

.popUpshow {
  visibility: visible;
  opacity: 1;
  transition: all 0.8s ease-in-out;
}

.popUpHide {
  visibility: hidden;
  opacity: 0;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.input_form {
  width: 80%;
  justify-content: flex-start;
}

.popup_form {
  position: absolute;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  height: auto;
  transition: all 0.8s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  bottom: 0%;
  right: 0%;
  background: #fff;
  border-radius: 10px;
}

.msg_pop {
  position: sticky;
  top: 20%;
  background-color: #fff;
  min-width: 200px;
  max-width: 800px;
  width: 100%;
  height: auto;
  min-height: 200px;
  z-index: 9999999;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
}

.places_signal {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin: 1rem 0;
}

.places_signal_icon_good {
  color: blue;
}

.places_signal_icon_bad {
  color: red;
}

.extra_providers_board {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.provider_board_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 1rem;
}

.provider_board_item > p {
  margin: 0 0.5rem;
}

.provider_board_item > i:hover {
  color: blue;
  cursor: pointer;
}

.edit-artist {
  margin: 0 5px;
}

.artists_board {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  width: 100%;
}

.artist-h3-msg {
  width: 100%;
}

.artist_board_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 0.5rem;
}

.artist_board_item > p {
  margin: 0 0.5rem;
}

.artist_board_item > i:hover {
  color: blue;
  cursor: pointer;
}

.note {
  direction: ltr;
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 0.5rem;
  margin: 1rem 0;
  border-radius: 10px;
}

.note > p {
  overflow-wrap: break-word;
}

.note > h3 {
  color: #c32148;
}

.column2_setion_heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.column2_setion_heading > h2 {
  font-weight: bold;
  color: #007fff;
}

.similar_events_board {
  direction: ltr;
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.merge_form_container {
  position: absolute;
  top: 81%;
  right: 1%;
  background-color: #fff;
  min-width: 200px;
  max-width: 2000px;
  width: 98%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  z-index: 20;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
}

.merged_events_board_merged_form {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border-bottom: 0.5px dashed grey;
}

.merge_form_items_container {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0.5rem 0.5rem 1.5rem 0.5rem;
}

.merge_form_similar_item {
  backgroud: blue;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.merge_form_similar_item_box {
  border: 0.5px solid grey;
  padding: 0.1rem;
  height: 30px;
  overflow: hidden;
}
.merge_form_similar_item_box_action_box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.add_remove_merged_event_button {
  cursor: pointer;
  padding: 0.1rem;
  font-size: 1.3rem;
}
.add_remove_merged_event_button:hover {
  color: #007fff;
  font-weight: bold;
}

.fa-object-group {
  color: #007fff;
}

.merged_events_view_list {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.merged_events_view_list_title {
  align-self: center;
  color: #007fff;
}

.merged_events_view_list_item {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  padding: 0.5rem;
  margin: 0.3rem 0;
}

.merged_events_view_list_item_box_index {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  align-self: center;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #007fff;
  font-size: 1.1rem;
}

.update_form_field_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.update_form_field_box_name_value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 5px;
}

.location_online_chcekbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.popup_subelement_container {
  max-width: 300px;
}

.replica_consecutive_dates_returns_options_board {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
}

.header_replica_sub {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.checkbox_consecutive_replica_box_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin: 5px;
}

.checkbox_consecutive_replica_box_container > p {
  margin: 0 0 0 10px;
}

.events_actions_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  padding: 5px;
}

.event_action_button {
  cursor: pointer;
  margin: 0 5px;
}

.event_action_button:hover {
  color: #03fc6b;
}

.events_table_header_item {
  cursor: pointer;
}

.events_table_header_item:hover {
  color: #007fff;
}

.table_row {
  cursor: pointer;
}

.table_row:hover {
  background-color: #007fff;
  color: #fff;
}

.table_row:hover .table_eye_icon {
  color: #fff;
}

.table_row_highlight {
  background-color: #007fff;
  color: #fff;
  font-style: italic;
}

.table_eye_icon {
  color: rgb(27, 126, 247);
  margin: 0 0.5rem;
}

.alert_on_table_row {
  background-color: rgba(204, 127, 127, 0.66);
}
.ignored_table_row {
  background: grey;
}

.table_button_container {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 60px;
  padding: 5px;
}

.table_button_container::after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  opacity: 0.8;
}

.table_button_container_buttons {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.event_task_board {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
}

.event_page_task_item {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  width: 80%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  padding: 0.5rem;
}

.event_page_task_subitem_title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 0.3px dashed grey;
  margin: 0 0 0.5rem 0;
}

.event_page_task_subitem {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
}
.event_page_task_subitem > p {
  word-break: break-all;
  white-space: normal;
}

.event_page_task_subitem_field {
  color: #007fff;
  font-weight: 500;
  margin: 0 0 0 0;
}

.event_page_task_item_action_container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 1rem;
  margin: 0.5rem 0;
}

.popup_section {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  min-height: 80px;
  width: 100%;
}

.sub_genre_container {
  width: 100%;
  padding: 0.5em;
  margin: 0.8em 0;
  border: 0.5px solid grey;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.sub_genre_container > label {
  width: 100%;
}

.genres_update_container {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.genres_update_sub_genre_container {
  display: flex;
  width: 100%;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border: 0.5px solid grey;
}

.genres_update_sub_genre_inner_container {
  display: flex;
  flex-flow: row;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.verified {
  position: sticky;
  top: 0%;
  width: 100%;
  background: #ffffff;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.verified > h6 {
  margin: 0 1em;
}

.new_artist_sub_genre_container {
  margin: 0.5em;
  border: 0.5px solid grey;
  padding: 0.5em;
}

.new_artist_sub_genre_container_header {
  color: #007fff;
  font-weight: medium;
}

#innerSoldout {
  cursor: pointer;
}

#verified {
  cursor: pointer;
}

.image_section_main_box {
  width: 100%;
  min-height: 300px;
  height: 100%;

  display: flex;
  flex-flow: row wrap;
}
.single_image_box {
  width: 100%;
  padding: 0.5em;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 0.5px solid grey;
}


.image_box {
  width: 330px;
  height: 220px;
  padding: 0;
  margin: 0;
  /*background-size: 100% 100%;*/
  background-repeat: no-repeat;
  position: center;
  background-size: cover;
  border: 0.3px solid black;
}

.buttons_section {
  padding: 3px;
  margin: 0 1.5em 0 0;
  width: calc(100% - 330px - 1em - 3px);
  max-width: 250px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 15px;
  background: #007fff;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.rating-box {
  border: 1px solid black;
  padding: 5px;
}

.datetime-container {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.datetime-container > h2 {
  font-size: 30px;
  margin: 15px;
}

.main-buttons {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.main-button {
  margin: 15px;
  width: 200px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.25), 0 0px 10px rgba(0, 0, 0, 0.22);
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.regular-header {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-bottom: 1px solid grey;
  position: sticky;
  top: 0%;
  z-index: 10;
  background: #ffffff;
}

.regular-header > h2 {
  font-size: 30px;
  margin: 15px;
}

table {
    width: 100%; /* Make the table span the full width of its container */
    border-collapse: collapse; /* Remove gaps between cells */
    font-size: 16px; /* Set font size for table content */
    margin-top: 20px; /* Space out the table from the header or any other elements */
}

/* Header row styles if you add one in the future */
thead tr {
    background-color: #333; /* Dark background for header row */
    color: white; /* White text for header row */
}

/* Table cells */
td {
    padding: 10px; /* Add some space inside each cell */
    border: 1px solid #ddd; /* Light gray border for cells */
}

/* Striped rows for readability */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover effect for rows */
tr:hover {
    background-color: #f5f5f5;
}

/* Link styles */
a {
    color: #007BFF; /* Blue color for links */
    text-decoration: none; /* Remove the default underline */
    transition: color 0.2s; /* Smooth transition for hover effects */
}

/* Hover effect for links */
a:hover {
    color: #0056b3; /* Darker blue for link hover */
}


