.appt_th {
  position: sticky;
  top: 0;
  background: #eee;
  height: max-content;
  padding-right: 4px;
  padding-left: 4px;
}
.appt_table {
  /* overflow-y: auto; */
  border-collapse: collapse;
  width: 100%;
  border-style: solid 1px black;
  width: max-content;
  white-space: nowrap;
  margin-right: 30px;
}
/* thead {
  position: sticky;
  top: 0;
} */
.appt_td {
  border: 1px solid #ccc;
  height: max-content;
  white-space: nowrap;
  padding-right: 4px;
  padding-left: 4px;
}
.appt_div {
  overflow-y: auto;
  /* overflow-x: hidden; */
  height: 500px;
  position: sticky;
  top: 0;
  width: max-content;
  border-width: 1px;
  border-style: solid;
  border-color: black;
}
.client_table {
  border-collapse: collapse;
  /* border-style: solid 1px black; */
  border: none;
  /* width: max-content; */
  white-space: nowrap;
  /* margin-right: 30px; */
  width: 100%;
}
.client_tbl_div {
  overflow-y: scroll;
  overflow-x: hidden;
  border: none;
  /* height: 300px; */
  /* width: max-content; */
  /* border-style: solid 1px black; */
}
a:link,
a:visited {
  color: black;
}
a:hover {
  color: #ccc;
}
/* * {
  box-sizing: border-box;
} */
/* Tooltip container */
.tooltip {
  /* width: 100px;
  height: 100px; */
  /* border-radius: 50%; */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible;
}

/* .tooltip::before,
.tooltip::after { */
.tooltip::before {
  --scale: 0;
  --tooltip-color: #444;

  position: absolute;
  top: -0.25rem;
  left: 20%;
  transform: translateX(-30%) translateY(var(--translate-y, 0)) scale(var(--scale));
  transition: 200ms transform;
  transition-delay: 0.5s;
  transform-origin: bottom center;
}

.tooltip::before {
  --translate-y: calc(-50%);

  content: attr(data-tooltip);
  color: white;
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border-radius: 0.3rem;
  text-align: center;
  width: max-content;
  /* max-width: 100%; */
  background: var(--tooltip-color);
}

/* .tooltip:hover::before,
.tooltip:hover::after { */
.tooltip:hover::before {
  --scale: 1;
}

.modal {
  padding: 0;
  border-width: 8px;
  border-style: double;
  border-color: black;
  border-radius: 5%;
}
.client-name {
  font-weight: bold;
}
/* :root {
  color-scheme: normal;
} */
