#main-nav > a {
  color: black;
  text-decoration: none;
}

.spotlight {
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

figcaption {
  max-width: 360px;
  margin: 0 auto 20px auto;
}

/* General focus styles */
:focus {
  outline: 5px solid #EF7622;
  /* Bright orange outline */
  outline-offset: 2px;
  /* Space between the element and the outline */
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.7);
  /* Glowing effect */
}

/* Specific focus styles for buttons and inputs */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 5px solid #EF7622;
  outline-offset: 2px;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.7);
}

body {
  background-color: #EDEDED;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: large;
}

table,
tr,
td > p {
  font-size: medium !important;
}

table {
  border: 2px solid #7A487C;
  background-color: #EDEDED;
  text-align: left;
  border-collapse: collapse;
  margin: 40px auto 0 auto;
}
table tr td {
  border: 2px solid #7A487C;
  padding: 20px;
  vertical-align: top;
}
table tr th {
  padding: 20px;
  border: 2px solid #7A487C;
}

#content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#content .header {
  padding: 0;
  margin: 20px 0;
  width: 100%;
  position: relative;
  display: flex;
}
#content .header .logo {
  margin: 10px auto;
  width: 50%;
}
#content .header .logo img {
  max-width: 100%;
}
#content .header #main-nav {
  display: flex;
  width: 59%;
  padding: 0;
  margin: 0;
  margin-left: 25px;
  margin-right: 55px;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
#content .header #main-nav .nav-btn {
  background-color: #49DFEA;
  font-size: medium;
  padding: 5px;
  margin: 0 5px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  white-space: nowrap;
  cursor: pointer;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.466));
}
#content .header #main-nav .nav-btn img {
  width: 35px;
  height: 35px;
  margin: 0 10px;
}
#content .header #main-nav .nav-btn:hover {
  background: linear-gradient(169deg, rgb(170, 109, 172) 0%, rgb(122, 72, 124) 50%, rgb(170, 109, 172) 100%);
  color: white;
}
#content .header #main-nav .nav-btn:hover img {
  filter: invert(1);
}
#content .header #main-nav .active {
  background: linear-gradient(169deg, rgb(170, 109, 172) 0%, rgb(122, 72, 124) 50%, rgb(170, 109, 172) 100%);
  color: white;
}
#content .header #main-nav .active img {
  filter: invert(1);
}
#content .container {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
#content .container #bios {
  width: 20%;
  display: block;
  border-right: solid 2px black;
  padding-right: 25px;
}
#content .container #bios .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
#content .container #bios .profile .profile-pic {
  z-index: 2;
  position: absolute;
  display: flex;
}
#content .container #bios .profile .profile-pic img {
  max-width: 160px;
  border: 2px solid white;
  border-radius: 80px;
  filter: drop-shadow(2px 3px 4px #666);
}
#content .container #bios .profile .profile-background {
  z-index: 1;
  filter: drop-shadow(2px 4px 6px #666);
  width: 300px;
  height: 220px;
  overflow: hidden;
}
#content .container #bios .profile .profile-background img {
  width: 200%;
}
#content .container #bios .profile-details {
  width: 100%;
}
#content .container #bios .profile-details h3 {
  width: 100%;
  text-align: center;
}
#content .container #bios .profile-details .name,
#content .container #bios .profile-details .Age,
#content .container #bios .profile-details .Height,
#content .container #bios .profile-details .Weight,
#content .container #bios .profile-details .Sex {
  font-size: medium;
  width: 60%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
#content .container #bios .profile-details .name p:first-child,
#content .container #bios .profile-details .Age p:first-child,
#content .container #bios .profile-details .Height p:first-child,
#content .container #bios .profile-details .Weight p:first-child,
#content .container #bios .profile-details .Sex p:first-child {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
#content .container #bios .profile-details .name p:last-child,
#content .container #bios .profile-details .Age p:last-child,
#content .container #bios .profile-details .Height p:last-child,
#content .container #bios .profile-details .Weight p:last-child,
#content .container #bios .profile-details .Sex p:last-child {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-left: 20px;
}
#content .container #canvas {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px;
  display: block;
}
#content .container #canvas .text-title-paragraph {
  max-width: 850px;
  margin: 0 auto;
}
#content .container #canvas .text-title-paragraph p {
  margin-bottom: 20px;
}
#content .container #canvas ul {
  padding: 0;
  margin: 10px;
}
#content .container #canvas ul li a {
  color: black;
  text-decoration: none;
  font-weight: normal;
}
#content .container #canvas ul li:hover a {
  color: white;
  font-weight: normal;
}
#content .container #canvas ul li.active a {
  color: white;
  text-decoration: none;
  font-weight: normal;
}
#content .container #canvas #dip_pip {
  position: absolute;
  width: 217px;
  right: 409px;
  top: 30px;
  display: none;
}
#content .container #canvas strong {
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#content .container #canvas p {
  max-width: 850px;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.2rem;
}
#content .container #canvas p span {
  color: #7A487C;
  font-weight: bold;
  cursor: pointer;
}
#content .container #canvas .med-history {
  display: flex;
  flex-direction: row;
  width: 100%;
}
#content .container #canvas .med-history .mini-nav {
  padding: 10px 0;
}
#content .container #canvas .med-history .mini-nav ul > li {
  list-style-type: none;
  margin-bottom: 80px;
  text-align: center;
  padding: 20px;
  border-radius: 60px;
  font-size: medium;
  cursor: pointer;
  width: calc(100% - 37px);
  white-space: nowrap;
}
#content .container #canvas .med-history .mini-nav ul > li:hover {
  background: linear-gradient(169deg, rgb(170, 109, 172) 0%, rgb(122, 72, 124) 50%, rgb(170, 109, 172) 100%);
  color: white;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.466));
}
#content .container #canvas .med-history .mini-nav ul > li.active {
  background: linear-gradient(169deg, rgb(170, 109, 172) 0%, rgb(122, 72, 124) 50%, rgb(170, 109, 172) 100%);
  color: white;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.466));
}
#content .container #canvas .med-history .mini-nav #Xray,
#content .container #canvas .med-history .mini-nav #MRI {
  width: calc(100% - 10px);
  white-space: nowrap;
}
#content .container #canvas .med-history .panel-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  max-width: 300px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 50%;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content #close-button {
  display: block;
  background: none;
  border: none;
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content2 {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  max-width: 300px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 50%;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content2 #close-button2 {
  display: block;
  background: none;
  border: none;
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content.visible {
  opacity: 1;
  visibility: visible;
}
#content .container #canvas .med-history .panel-info #roll-over-text-content2.visible {
  opacity: 1;
  visibility: visible;
}
#content .container #canvas .med-history .panel-info p {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
}
#content .container #canvas .med-history .panel-info p #roll-over-text {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: pointer;
}
#content .container #canvas .med-history .panel-info p #roll-over-text-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  z-index: 200;
  width: 380px;
  background-color: white;
  text-decoration: none;
  filter: drop-shadow(9px 8px 7px #d3d3d3);
  padding: 20px;
  color: black;
}
#content .container #canvas .med-history .panel-info p #roll-over-text-content.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#content .container #canvas .med-history .panel-info p #roll-over-text2 {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: pointer;
}
#content .container #canvas .med-history .panel-info p #roll-over-text-content2 {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  z-index: 200;
  width: 380px;
  background-color: white;
  text-decoration: none;
  filter: drop-shadow(9px 8px 7px #d3d3d3);
  padding: 20px;
  color: black;
}
#content .container #canvas .med-history .panel-info p #roll-over-text-content2.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#content .container #canvas .med-history .panel-info table.histology-table tr td {
  width: 50%;
  max-width: 50%;
}
#content .container #canvas .med-history .panel-info table {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 850px;
}
#content .container #canvas .med-history .panel-info table tr td {
  width: -moz-fit-content;
  width: fit-content;
}
#content .container #canvas .gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#content .container #canvas .gallery .image {
  display: flex;
  justify-content: left;
  flex-direction: column;
  margin: 0 5px;
}
#content .container #canvas .gallery .image strong {
  width: 72%;
  margin: 0 auto;
}
#content .container #canvas .gallery .image img {
  margin: 0 auto;
  max-height: 280px;
  display: block;
  width: auto;
}

.footer {
  padding: 10px;
  position: relative;
  display: block;
}
.footer p.text-right {
  text-align: right;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  .header,
  .container,
  .nav-btn {
    flex-direction: column;
  }
  #content .container #bios {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    border-right: solid 0px black;
    display: flex;
    flex-direction: row;
  }
  .gallery {
    flex-direction: column;
  }
  #content .container #canvas {
    width: 99%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px;
    display: block;
    position: relative;
    margin: 0 auto;
  }
  #content .header #main-nav {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
  }
  #content .container #bios {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    border-right: solid 0px black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    border-bottom: solid 2px black;
  }
}
@media only screen and (max-width: 600px) {
  #content .header .nav-btn {
    text-align: center;
    border-radius: 10px !important;
    height: 120px;
    margin: 0 10px;
  }
  #content .container #bios .profile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: -moz-fit-content;
    height: 100%;
    position: relative;
  }
  #content .container #bios .profile .profile-background {
    z-index: 1;
    overflow: hidden;
  }
  #content .container #bios .profile .profile-background img {
    width: 210%;
  }
  #content .container #bios .profile .profile-pic img {
    width: 100%;
    margin: 0 auto;
    left: -4px;
    position: relative;
  }
  .profile-details p {
    font-size: medium;
  }
  #content .header #main-nav {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-left: 0;
    justify-content: space-evenly;
    align-items: center;
  }
  #content .container #canvas .gallery .image {
    width: 100%;
    margin-top: 50px;
  }
  #content .container #canvas .med-history {
    display: flex;
    flex-direction: column;
  }
  #content .container #canvas .med-history .mini-nav ul > li {
    list-style-type: none;
    margin-bottom: 5px;
    text-align: center;
    padding: 20px;
    border-radius: 60px;
    font-size: small;
    cursor: pointer;
  }
  #content .container #canvas {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    display: block;
    position: relative;
  }
  #content .container #canvas .med-history .panel-info {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  ul {
    padding-inline-start: 0;
  }
  #content .container #canvas #dip_pip {
    position: absolute;
    width: 217px;
    right: 159px;
    top: 400px;
    display: none;
  }
}/*# sourceMappingURL=style.css.map */