:root {
  --fontSize: 1vmin;
}

/* * {
  outline: 1px solid red;
} */

* {
  font-family: 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 2vmin;
  background-color: #3498db;
}

h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1),
    1px 1px 1px rgba(0, 0, 0, 0.25);
}

.subscribeNowBtn {
  display: none;
}

.subscribeNowLink {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */

.header {
  width: 100vw;
  height: 10vh;
  height: 10svh;
  background-color: #3498db;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all 0.3s ease;
  margin-bottom: 5vh;
  margin-bottom: 5svh;
}

/* Styles for the sticky header */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* Additional styles for the header when it becomes sticky */
.sticky + .content {
  margin-top: 15vh;
  margin-top: 15svh;
}

.header p {
  font-size: 1em;
  font-weight: 700;
}

.headerLogo {
  max-height: 3em;
  background-color: #3498db;
  border-radius: 1vmin;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(255, 255, 255, 0.15) 0px 0px 0px 1px inset;
  margin-right: 1vw;
}

.subtitle {
  color: #fff;
  font-size: 2em !important;
  font-weight: 700;
  text-shadow: -0.1vmin -0.1vmin 0px #3498db, 0.2vmin 0.2vmin 0px #3498db,
    0.3vmin 0.3vmin 0px rgba(0, 0, 0, 0.2);
}

.headerLeft {
  width: 30vw;
  display: flex;
  align-items: center;
  justify-content: start;
}

.headerRight {
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.25em;
}

.headerRight p {
  color: #fff;
  font-size: 0.7em;
  text-transform: uppercase;
}

.smallHelpText {
  color: #fff;
  font-weight: 800;
  font-size: 0.6em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2vmin 0.4vmin;
  border-radius: 0.3vmin;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  user-select: none;
}

.welcome {
  width: 90vw;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  padding: 0;
  margin: 0;
  margin-left: 5vw;
}

.yellowText {
  color: #ffda79 !important;
}

.addShadowText {
  text-shadow: -0.1vmin -0.1vmin 0px #3498db, 0.2vmin 0.2vmin 0px #3498db,
    0.3vmin 0.3vmin 0px rgba(0, 0, 0, 0.2);
}

.welcome p {
  font-size: 5vmin;
  font-weight: 800;
  text-wrap: balance;
}

.welcome p:last-of-type {
  font-size: 2vmin;
  font-weight: 100;
  width: 70vw;
  max-width: 800px;
  text-wrap: balance;
  margin-top: -2vmin;
  color: #fff;
  margin-bottom: 1vh;
}

.supportTripticoText {
  width: 70vmin;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  align-self: center;
}

.supportTripticoText p {
  font-size: 2vmin;
  font-weight: 100;
  color: #fff;
  margin-bottom: 1vh;
  line-height: normal;
  padding-right: 1vw;
}

.supportTripticoText > .supportSubtitle {
  font-weight: 100;
  display: flex;
  align-items: center;
  gap: 1vw;
}

.supportSubtitleCentre {
  align-self: center;
}

.supportTripticoText > .supportTitle {
  font-size: 3.5vmin;
  font-weight: 800;
  text-wrap: balance;
}

.supportSubtitle > svg {
  height: 4vmin;
  fill: #fff;
}

.supportCardHolder {
  display: grid;
  align-items: center;
  justify-content: center;
  align-self: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 3vmin;
  margin-bottom: 3vmin;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1vmin 2vmin;
  border-radius: 1vmin;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#supp_01,
#supp_02,
#supp_03 {
  grid-column: 1/1;
  grid-row: 1/1;
}

.supportContainer {
  background-color: #eee;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 2fr;
  align-items: center;
  justify-content: center;
  width: 70vmin;
  margin-top: 4vh;
  margin-bottom: 2vh;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  transition: transform 0.1s, z-index 0.1s;
}

.supportContainerTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffda79;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.supportContainerTitle p {
  margin: 0;
  padding: 0;
  margin-top: 1vmin;
  margin-bottom: 2vmin;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.25vmin;
}

.supportContainerTitle svg {
  width: 7.5vmin;
  margin-top: 2vmin;
}

.supportContainerText {
  margin-top: 3vmin;
  margin-bottom: 3vmin;
}

.supportContainerText p {
  font-weight: 100;
  color: #333;
  padding-left: 3vmin;
  padding-right: 3vmin;
}

.supportContainerText ul {
  padding-left: 5vmin;
}

.supportCardButtons {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2vmin;
  fill: #fff;
}

.suppArrowBtn {
  cursor: pointer;
}

.suppArrowBtn:hover {
  scale: 1.1;
}

.suppArrowBtn svg {
  width: 5vmin;
}

.supportCardButtons p {
  color: #fff;
  font-size: 2vmin;
  font-weight: 800;
  user-select: none;
}

.welcome .simpleButton,
.supportTripticoText .simpleButton {
  font-size: 1.2vmin;
}

.lightText {
  color: #fff;
}

.simpleLink {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  cursor: pointer;
  user-select: none;
  color: #000;
}

/* -------------------------------------------------------------------------- */
/*                                HERO SECTION                                */
/* -------------------------------------------------------------------------- */

.heroSection {
  width: 90vw;
  height: fit-content;
  margin-left: 5vw;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 6vh 6vh 6vh;
  gap: 0.5vmin;
  padding: 1vmin;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1vmin;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  user-select: none;
  cursor: pointer;
}

.heroSectionImage {
  grid-column: 1/2;
  grid-row: 1/4;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1vmin;
  width: 100%;
  height: 100%;
  align-self: center;
  justify-self: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0.1vmin 0.1vmin,
    rgba(0, 0, 0, 0.3) 0px 0.1vmin 0.1vmin -0.1vmin,
    rgba(0, 0, 0, 0.2) 0px -0.1vmin 0px inset;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.heroSectionImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  grid-column: 1/2;
  grid-row: 1/2;
}

.heroSectionImage:hover img {
  opacity: 1;
  transition: opacity 0.25s;
}

.heroSectionImageText {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-direction: column;
  z-index: 99;
  height: 20vmin;
}

.heroSectionImageText * {
  margin: 0;
  padding: 0;
}

.heroSectionImageText > .simpleButton {
  user-select: none;
}

.heroSectionImageText > .simpleButton > p {
  font-weight: 900;
  font-size: 1.25vmin;
  color: #333;
  text-transform: uppercase;
}

.heroSectionImageText h4 {
  font-size: 3.5vmin;
  text-transform: uppercase;
  text-align: left;
  background-color: #c44569;
  color: #fff;
  padding: 0.2vmin 1vmin 0.2vmin 1vmin;
  border-radius: 0 1vmin 1vmin 0;
  box-shadow: #fff 0px 0px 0px 0.175vmin,
    rgba(6, 24, 44, 0.65) 0px 0.4vmin 0.6vmin -0.1vmin,
    rgba(255, 255, 255, 0.08) 0px 0.1vmin 0px inset;
}

.heroSectionImageText h5 {
  font-size: 2vmin;
  text-transform: uppercase;
  text-align: left;
  font-weight: 800;
  background-color: #c44569;
  color: #ffda79;
  padding: 0.2vmin 1vmin 0.2vmin 1vmin;
  border-radius: 0 0.75vmin 0.75vmin 0;
  box-shadow: #ffda79 0px 0px 0px 0.175vmin,
    rgba(6, 24, 44, 0.65) 0px 0.4vmin 0.6vmin -0.1vmin,
    rgba(255, 255, 255, 0.08) 0px 0.1vmin 0px inset;
  margin-top: -1.5vmin;
}

.heroSectionImageText a {
  width: fit-content;
  height: fit-content;
  font-size: 1.25vmin;
  align-self: flex-end;
  margin-right: 2vmin;
}

/* -------------------------------------------------------------------------- */
/*                              HERO SECTION BTN                              */
/* -------------------------------------------------------------------------- */

.heroSectionButton {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 1fr; /* Simplified to ensure content fits */
  background-color: #2980b9;
  width: 100%;
  height: 100%;
  align-self: center;
  justify-self: center;
  border-radius: 1vmin;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0.1vmin 0.1vmin,
    rgba(0, 0, 0, 0.3) 0px 0.1vmin 0.1vmin -0.1vmin,
    rgba(0, 0, 0, 0.2) 0px -0.1vmin 0px inset;
  user-select: none;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden; /* Ensure content does not overflow */
}

.heroSectionButton:hover {
  background-color: #3e8dc0;
}

.heroSectionButtonLeft {
  grid-column: 1/2;
  grid-row: 1/3; /* Adjusted to span both rows */
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1vmin 0 0 1vmin;
}

.heroSectionButton svg {
  grid-column: 1/2;
  grid-row: 1/3; /* Adjusted to span both rows */
  width: 50%;
  height: 50%;
  align-self: center;
  justify-self: center;
  padding: 0;
  margin: 0;
  fill: #eee;
}

#supportBtn svg {
  fill: #fd79a8;
}

.heroButtonDiv {
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  grid-column: 2/3;
  grid-row: 1/3; /* Adjusted to span both rows */
  align-self: center;
}

.heroSectionButton p {
  align-self: center;
  justify-self: start;
  font-weight: 800;
  font-size: 1.5vmin;
  grid-column: 2/3;
  grid-row: 1/2;
  color: #ffda79;
  text-transform: uppercase;
  margin: 0; /* Ensure no extra margin affects layout */
  margin-left: 0.75vw;
  margin-top: 1vh;
}

.heroSectionButton p:last-of-type {
  align-self: center;
  justify-self: start;
  margin-left: 1vmin;
  grid-column: 2/3;
  grid-row: 2/3;
  color: #eee;
  font-weight: normal;
  font-size: 0.8vmin;
  margin: 0; /* Ensure no extra margin affects layout */
  margin-left: 0.75vw;
  margin-bottom: 0.9vh;
}

/* -------------------------------------------------------------------------- */
/*                             HERO SECTION NARROW                            */
/* -------------------------------------------------------------------------- */

@media (max-width: 1079px) {
  .heroSection {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .heroSectionImage {
    grid-column: 1 / 2;
    grid-row: 1 / 7;
    width: 100%;
    height: 100%;
    max-height: none;
    align-self: stretch;
    justify-self: stretch;
  }

  .heroSectionImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .heroSectionImageText {
    height: 70%;
    align-self: center;
  }
  .welcome p:last-of-type {
    width: 90vw;
  }
}

/* -------------------------------------------------------------------------- */
/*                                SEARCH PANEL                                */
/* -------------------------------------------------------------------------- */

.searchPanel {
  width: 90vw;
  margin-top: 5vh;
  margin-left: 5vw;
  display: grid;
  grid-template-columns: 1fr 0.025fr 1fr;
  grid-template-rows: 1fr;
  padding: 1vmin;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1vmin;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.searchPanelDiv {
  width: 2px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  align-self: center;
  justify-self: center;
}

.searchResultText {
  text-transform: uppercase;
  color: #000;
  font-size: 1.2vmin;
  font-weight: 100;
  width: 90vw;
  margin-left: 5vw;
  margin-top: 1vh;
}

/* -------------------------------------------------------------------------- */
/*                                DROPDOWN MENU                               */
/* -------------------------------------------------------------------------- */

.select-css {
  grid-column: 3/4;
  font-size: 2vmin;
  font-weight: 100;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 1vmin 1vmin;
  border: 0;
  /* box-shadow: 0 0.1vmin 0px 1vmin rgba(0, 0, 0, 0.1); */
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3498db;
  background-image: url('https://www.tripticoplus.com/media/resources/webpageExperiments/down.svg');
  background-repeat: no-repeat, repeat;
  background-position: right 1.25vmin top 50%, 0 0;
  background-size: 2.5vmin auto, 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.select-css::-ms-expand {
  display: none;
}

.select-css:hover {
  background-color: #48a2df;
  box-shadow: 0 0.25vmin 0.5vmin rgba(0, 0, 0, 0.2),
    0 0.5vmin 0.25vmin rgba(0, 0, 0, 0.15);
}

.select-css:focus {
  /*   border-color: #2c3e50; */
  color: #eee;
  outline: none;
}

.select-css option {
  font-weight: normal;
}

/* No stage fade to SWAL */

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0) !important;
}

/* -------------------------------------------------------------------------- */
/*                                SEARCH INPUT                                */
/* -------------------------------------------------------------------------- */

.inputCard {
  display: flex;
  justify-content: left;
  padding-left: 1vmin;
  align-items: center;
  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);
  color: #333;
  background: #fff;
  height: 100%;
  overflow: hidden;
}

.inputCard:hover {
  box-shadow: 0 0.25vmin 0.5vmin rgba(0, 0, 0, 0.2),
    0 0.5vmin 0.25vmin rgba(0, 0, 0, 0.15);
}

.inputCard span {
  background-color: rgba(255, 255, 255, 0.5);
}

.searchTextInput {
  color: #333;
  font-size: 2vmin;
  font-weight: 100;
  width: 97%;
  overflow: hidden;
  border: 0;
  outline: none;
}

/* Info with search returns */

.tableInfo {
  font-size: 1.5vmin;
  color: #333 !important;
  font-weight: 300;
}

/* -------------------------------------------------------------------------- */
/*                                 FILE CARDS                                 */
/* -------------------------------------------------------------------------- */

.cards {
  width: 90vw;
  margin-left: 5vw;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1vmin;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  box-sizing: border-box;
  padding: 2vw;
}

/* Responsive grid to adjust number of columns based on screen width */

@media (max-width: 1600px) {
  .cards {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
  }
  :root {
    --fontSize: 1.1vmin; /* Adjust the base font size for medium screens */
  }
}

@media (max-width: 1079px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for small screens */
  }
  :root {
    --fontSize: 1.2vmin; /* Adjust the base font size for medium screens */
  }
}

@media (max-width: 750px) {
  .cards {
    grid-template-columns: 1fr; /* 1 column for very small screens */
  }
  :root {
    --fontSize: 1.6vmin; /* Adjust the base font size for medium screens */
  }
}

.card {
  width: 100%;
  padding-top: 50%; /* Aspect ratio 2:1 (height is half of the width) */
  position: relative; /* For absolute positioning of inner content */
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 1vmin;
}

.card:hover .card__inner {
  box-shadow: 0 1vmin 1vmin rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 50% 25% 25%;
  grid-template-rows: 75% 25%;
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1vmin;
  background-color: #fff;
}

.topBar {
  height: 1vmin;
  width: 100%;
  background-color: #ffda79;
  position: absolute;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1vmin 1vmin 0 0;
}

.card__inner .filename {
  font-weight: 100;
  text-align: center;
  padding: 1vmin;
  padding-left: 2vmin;
  padding-right: 2vmin;
  display: grid;
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  justify-content: center;
  align-content: center;
  font-size: calc(var(--fontSize) * 1.75);
  align-self: center;
  text-wrap: balance;
}

.card__inner .filecode {
  padding: 0.5vmin;
  background: #eee;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0 1vmin;
  display: grid;
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
  align-content: center;
  color: #333;
  font-size: calc(var(--fontSize) * 1.5) !important;
  margin: 0 !important;
  font-weight: 400;
  text-transform: uppercase;
}

.card__inner .public {
  padding: 0.5vmin;
  background: #218c74;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  align-content: center;
}

.card__inner .public p {
  color: #eee;
  font-size: calc(var(--fontSize) * 1.25) !important;
  margin: 0 !important;
  font-weight: 400;
  text-transform: uppercase;
}

.card__inner .fav {
  padding: 6px;
  background: #999;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 1vmin 0;
  display: grid;
  grid-column: 3;
  grid-row: 2;
  justify-content: center;
  align-content: center;
}

.card__inner .fav i {
  color: rgba(0, 0, 0, 0.3);
  font-size: calc(var(--fontSize) * 2) !important;
}

.card.is-inactive .card__inner {
  /* filter: brightness(50%);  // Safari crashes when this filter used */
  opacity: 0.4;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.card.is-active .card__inner {
  transform: scale(1.08);
  box-shadow: 0 1vmin 0.4vmin rgba(0, 0, 0, 0.4);
}

/* -------------------------------------------------------------------------- */
/*                                END FILE CARD                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               RESOURCE PANEL                               */
/* -------------------------------------------------------------------------- */

.resPanel {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
}

.rectangle {
  height: 160px;
  width: 90vw;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  white-space: nowrap;
  box-shadow: 0 -1px rgba(0, 0, 0, 0.8), 0 1px 0px rgba(255, 255, 255, 0.3);
  border-radius: 1vmin;
}

/* Hide vertical scrollbar on this panel */

.rectangle::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0px;
}

/* Always show horizontal scrollbar on this panel */

.rectangle::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: #ddd;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #bbb;
}

.rectangle::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bonus Rectangle */

.bonusRectangle {
  height: 160px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  white-space: nowrap;
  box-shadow: 0 -1px rgba(0, 0, 0, 0.8), 0 1px 0px rgba(255, 255, 255, 0.3);
}

/* Hide vertical scrollbar on this panel */

.bonusRectangle::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0px;
}

/* Always show horizontal scrollbar on this panel */

.bonusRectangle::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #33d9b2;
}

.bonusRectangle::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pageSubText {
  text-align: left;
  width: 90%;
  margin-top: 12px;
}

.pageSubMenu {
  text-align: right;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
}

.pageSubMenu a {
  text-decoration: underline;
  text-transform: uppercase;
  color: #ffda79;
  font-weight: 900;
  font-size: 14px;
}

.pageSubMenu b {
  text-transform: uppercase;
  color: #eee;
  font-weight: 900;
  font-size: 14px;
}

.res_card {
  display: inline-flex;
  justify-content: center;
  height: 120px;
  width: 180px;
  background-color: #eee;
  margin: 10px;
  box-shadow: 0 -1px 0px rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* -------- Highlight card if specifically created for this resource -------- */
.highlighted-card {
  position: relative;
  margin-right: 36px;
  margin-left: 48px;
}

/* ------------ Add a vertical line to separate highlighted card from others ------------ */
.highlighted-card::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -28px; /* Adjust as needed */
  width: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.highlighted-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px; /* Adjust as needed */
  width: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.res_card_disabled {
  filter: grayscale(100%) brightness(25%);
  scale: 0.98;
  box-shadow: none;
}

.res_card_content {
  display: grid;
  grid-template-rows: 82% 18%;
}

.res_card_content img {
  grid-row: 1 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
  justify-content: center;
  align-content: center;
}

.res_card_content p {
  grid-row: 2;
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  align-self: center;
  justify-self: center;
}

.sidebar {
  opacity: 1 !important;
  background-size: 5px 5px !important;
  background-image: repeating-linear-gradient(
    45deg,
    #3498db 0,
    #3498db 1px,
    #48a2df 0,
    #48a2df 50%
  ) !important;
}

#panelFilename {
  text-wrap: balance;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  padding: 0;
}

.openWith p {
  color: #fff;
  font-weight: 700 !important;
  font-size: 14px;
  text-transform: uppercase;
}

.mobileOptionButton {
  display: none;
}

.buttonPanel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1vw;
  height: 64px;
  width: 90vw;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1vmin;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.resPanelButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  height: 80%;
  width: fit-content;
  padding: 0.5vw 2vw;
  background-color: #fff;
  border: 0;
  border-radius: 0.5vmin;
  box-sizing: border-box;
  color: #000;
  font-size: 1.5vmin;
  text-decoration: none #d1d5db solid;
  text-decoration-thickness: auto;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0.2vmin 0.4vmin,
    rgba(0, 0, 0, 0.3) 0px 0.7vmin 1.3vmin -0.3vmin,
    rgba(0, 0, 0, 0.2) 0px -0.3vmin 0px inset;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.resPanelButton i {
  font-size: 2vmin;
}

.delete {
  background-color: #ff8686;
  margin-left: auto;
}

.restore {
  background-color: #ffda79;
}

.notLit {
  background-color: #444;
  color: #000;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4),
    0 1px 0px rgba(255, 255, 255, 0.2);
}

.litGreen {
  background-color: #218c74;
  color: #fff;
}

.litPink {
  background-color: #fd79a8;
  color: #fff;
}

.panelCloseBtn {
  border-radius: 50%;
  padding: 0.5em;
  width: 30px;
  height: 30px;
  border: 2px solid #3498db;
  background-color: #2c3e50;
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
}

.panelCloseBtn:hover {
  background-color: #fff;
}

.panelCloseBtn::before {
  content: ' ';
  position: absolute;
  display: block;
  background-color: #3498db;
  width: 2px;
  left: 12px;
  top: 5px;
  bottom: 5px;
  transform: rotate(45deg);
}
.panelCloseBtn::after {
  content: ' ';
  position: absolute;
  display: block;
  background-color: #3498db;
  height: 2px;
  top: 12px;
  left: 5px;
  right: 5px;
  transform: rotate(45deg);
}

.fileClickPanel {
  min-width: 100vw;
  height: 425px;
  margin: 0;
  border-radius: 0;
  opacity: 1 !important;
  background-size: 5px 5px !important;
  background-image: repeating-linear-gradient(
    45deg,
    #3498db 0,
    #3498db 1px,
    #48a2df 0,
    #48a2df 50%
  ) !important;
  box-shadow: 0 -12px 0px rgba(0, 0, 0, 0.15);
  border-top: 3px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
}

.fixBtm {
  position: fixed;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

.loader {
  background: #34495e;
  padding: 1vw;
  width: 5vw;
  height: 5vw;
  border-radius: 1vmin;
  position: fixed;
  right: 1vw;
  top: 1vw;
  box-shadow: 0 0.5vmin 0px rgba(0, 0, 0, 0.3),
    0 -0.1vmin 0px rgba(255, 255, 255, 0.3);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader > svg {
  padding: 0;
  margin: 0;
}

.loader p {
  color: #ffda79;
  font-size: 0.75vw !important;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Blur background, but not any alerts */

.blurBody > [aria-hidden='true'] {
  transition: 0.1s filter;
  filter: blur(15px);
}

/* Blur background by default for SweetAlert */

body.swal2-shown > [aria-hidden='true'] {
  transition: 0.1s filter;
  filter: blur(10px);
}

.pad {
  padding: 12px;
  color: #202020;
  background-color: #2980b9;
  box-shadow: 0 -1px rgba(0, 0, 0, 0.3), 0 1px 0px rgba(255, 255, 255, 0.3);
}

.nextPrevBtnHolder {
  width: 90vw;
  margin-left: 5vw;
  margin-top: 2vw;
  margin-bottom: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nextPrevBtnHolder i {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 2.5vmin;
}

.circleButton,
.editButton {
  border-radius: 100%;
  width: 2.5vw;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.filenameSection {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1vmin 1.5vmin;
  border-radius: 1vmin;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  align-items: center;
}

.panelBtnGroup {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1vw;
}

.editButton {
  background-color: #fff;
  width: auto;
  height: 90%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0.1vmin 0.2vmin,
    rgba(0, 0, 0, 0.3) 0px 0.2vmin 0.3vmin -0.3vmin,
    rgba(0, 0, 0, 0.2) 0px -0.2vmin 0px inset;
  max-width: 50px;
  max-height: 50px;
}

.editButton i {
  color: #555;
  font-size: 18px !important;
}

.smallLabelButton {
  width: 6vmin;
  height: 100%;
  max-height: 6vmin;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70% 30%;
  align-items: center;
  justify-items: center;
  background-color: #fff;
  border-radius: 0.5vmin;
  cursor: pointer;
}

.smallLabelButton .material-icons {
  font-size: 2vmin;
  user-select: none;
}

.smallLabelButton .smallLabel {
  font-size: 0.8vmin;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #eee;
  border-top: 1px solid #ddd;
  text-transform: uppercase;
  border-radius: 0 0 0.5vmin 0.5vmin;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0.1vmin 0.2vmin,
    rgba(0, 0, 0, 0.3) 0px 0.3vmin 0.5vmin -0.1vmin,
    rgba(0, 0, 0, 0.2) 0px -0.1vmin 0px inset;
  user-select: none;
}

.displayingInfoText {
  color: #fff;
  font-size: 1.75vmin;
  font-weight: 100;
  text-transform: uppercase;
  margin-left: 1vw;
  margin-right: 1vw;
  user-select: none;
}

.nextPrevDisabled {
  background-color: #2f89c5 !important;
  color: #2a7aaf !important;
  pointer-events: none !important;
  box-shadow: none;
}

.nextPrevEnabled {
  background-color: #fff !important;
  box-shadow: 0 2px rgba(0, 0, 0, 0.3) !important;
}

.nextPrevDisabled i {
  color: rgba(0, 0, 0, 0.15) !important;
}

.nextPrevEnabled i {
  color: #333 !important;
}

.nextPrevBtnHolder p {
  margin-top: 4px;
  padding: 8px;
}

.fileClickPanelContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  height: 100%;
  width: 90vw;
  margin-left: 5vw;
}

/* -------------------------------------------------------------------------- */
/*                                 NEW SIGN IN                                */
/* -------------------------------------------------------------------------- */

.signInPage {
  display: none;
  position: fixed;
  z-index: 999;
  justify-content: center;
  align-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgba(52, 152, 219, 0.95); */
  background-color: rgba(44, 62, 80, 0.975);
}

.signInLabel > p {
  font-size: 1.1vmin;
  padding: 0;
  margin: 0;
  margin-bottom: 2px;
  text-transform: uppercase;
  color: #eee;
  padding-left: 1px;
  font-weight: 800;
}

#loginError {
  font-size: 1.5vmin;
  text-transform: uppercase;
  color: #ffda79;
  font-weight: 800;
  text-align: center;
}

.signIn_container {
  display: flex;
  flex-direction: column;
  width: 70vw;
  max-width: 900px;
  height: fit-content;
  align-self: center;
  background-color: #3498db;
  padding: 2em;
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-top: 1px solid rgb(255, 255, 255, 0.5);
  align-items: center;
}

.signIn_content {
  width: 95%;
  height: 95%;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.formBtns {
  display: flex;
  justify-content: space-between;
}

.signInFormInput {
  margin-bottom: 2vmin !important;
}

.signInFormInput,
textarea {
  font-size: 1.75vmin;
  color: #333;
  margin: 0;
  padding: 0;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 8px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.9);
  resize: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

textarea {
  min-height: 30vh;
}

#signupPage {
  overflow: hidden;
}

.copyTextBigger {
  font-size: 2.75vmin;
  font-weight: 500;
  color: #ffda79;
}

.addSmallSpaceBelow {
  margin-bottom: 0.5em;
}

.addThirdSpaceBelow {
  margin-bottom: 2.5em;
}

.showFpwd {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.smallLightText {
  color: #edf2fb;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 800;
}

.simpleButton {
  background-color: #fff;
  border: 0;
  border-radius: 0.25em;
  box-sizing: border-box;
  color: #34495e;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1em;
  padding: 0.75em 1em;
  text-align: center;
  text-decoration: none rgba(0, 0, 0, 0.2) solid;
  text-decoration-thickness: auto;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  height: fit-content;
}

.highlightButtonColour {
  background-color: #ffda79;
  color: #34495e;
}

.highlightButtonColour p,
.darkText {
  color: #34495e !important;
  font-size: 0.9em !important;
  text-transform: uppercase;
  font-weight: 800;
}

.shepherd-text img {
  width: 100% !important;
}

/* -------------------------------------------------------------------------- */
/*                              SUPPORT TRIPTICO                              */
/* -------------------------------------------------------------------------- */

.no-scroll {
  overflow: hidden;
}

.supportTripticoHolder {
  height: 100vh;
  width: 100vw;
  background-color: #3498db;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* -------------------------------------------------------------------------- */
/*                               BONUS RESOURCES                              */
/* -------------------------------------------------------------------------- */

.bonusHolder {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  background-color: #218c74;
  position: absolute;
  top: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bonusResHolder {
  max-width: 90vw;
  margin-left: 5vw;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1vmin;
}

.res_card_bonus {
  display: inline-flex;
  justify-content: center;
  height: 12vmin;
  width: 18vmin;
  background-color: #eee;
  margin: 1vmin;
  box-shadow: 0 -1px 0px rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.res_card_bonus > .res_card_content {
  display: grid;
  grid-template-rows: 82% 18%;
}

.res_card_bonus > .res_card_content > p {
  grid-row: 2;
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: 1.25vmin;
  text-transform: uppercase;
  align-self: center;
  justify-self: center;
}

.selectBonusText {
  color: #fff;
  font-weight: 700 !important;
  font-size: 1.5vmin;
  text-transform: uppercase;
  margin-top: 5vh;
  width: 90vw;
  margin-left: 5vw;
}

.close-button {
  position: fixed;
  top: 1em;
  right: 1em;
  width: 3.5vw;
  height: 3.5vw;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  font-size: 1.25em;
  text-align: center;
  cursor: pointer;
  border: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  user-select: none;
  -webkit-user-select: none;
}

.close-button:focus {
  outline: none;
}

.close-button svg {
  width: 50%;
}

/* NEWSLETTER */

.newsletterPanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  background-color: #3498db;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletterPanelInner {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

#subStackBtn {
  border-radius: 6px;
}

.lightText {
  color: #fbfefb;
}

.smallLightText {
  color: #edf2fb;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 800;
}

/* -------------------------------------------------------------------------- */
/*                                    JELLO                                   */
/* -------------------------------------------------------------------------- */

.jello-horizontal {
  z-index: 99;
  -webkit-animation: jello-horizontal 0.9s 3s both;
  animation: jello-horizontal 0.9s 3s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-6-6 14:51:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* -------------------------------------------------------------------------- */
/*                                   DIALOG                                   */
/* -------------------------------------------------------------------------- */

dialog {
  width: 90vw;
  max-width: 900px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: none;
  border-radius: 1vmin;
  padding: 2vmin;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3.5vmin 1vmin -2vmin;
  text-align: center;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

dialog:focus {
  outline: none;
}

dialog .select-css {
  font-size: 2vmin !important;
  font-weight: 100;
  color: #fff;
  width: 40vmin;
  height: 5vmin;
  padding: 1vmin 2vmin;
  border: 0;
  /* box-shadow: 0 0.1vmin 0px 1vmin rgba(0, 0, 0, 0.1); */
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3498db;
  background-image: url('https://www.tripticoplus.com/media/resources/webpageExperiments/down.svg');
  background-repeat: no-repeat, repeat;
  background-position: right 1.25vmin top 50%, 0 0;
  background-size: 2.5vmin auto, 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

dialog p {
  font-size: 2vmin !important;
}

dialog .shareSmallPrint {
  font-size: 1.5vmin !important;
  color: #777;
  padding: 0 5vmin;
  text-wrap: balance;
}

dialog h3 {
  text-transform: uppercase;
}

.shareTitleText {
  color: #34495e;
  font-size: 2vmin !important;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 5vmin;
}

.btmSection,
.midSection {
  margin-top: 5vh;
  margin-bottom: 2.5vh;
}

#qrCodeMessage {
  color: #777;
  font-size: 1.5vmin !important;
  text-wrap: balance;
}

/* -------------------------------------------------------------------------- */
/*                                   TOOLTIP                                  */
/* -------------------------------------------------------------------------- */

[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip by default */
[data-tooltip]::before,
[data-tooltip]::after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

/* Tooltip box (using ::before) */
[data-tooltip]::before {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
  padding: 7px 10px; /* Vertical and horizontal padding */
  max-width: 300px; /* Optional: limit maximum width */
  border-radius: 3px;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap; /* Keep content on one line */
  overflow: hidden;
  text-overflow: ellipsis; /* Adds ... if text is too long */
}

/* Tooltip arrow (using ::after) */
[data-tooltip]::after {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: '';
  font-size: 0;
  line-height: 0;
}

/* Show tooltip on hover */
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  visibility: visible;
  opacity: 1;
}
