@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes loadingPulse {
  0% {
    color: #91babf; }
  50% {
    color: #478c95; }
  100% {
    color: #91babf; } }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 300;
  color: #152a2d; }

b {
  font-weight: 500;
  color: inherit; }

a {
  text-decoration: none; }

html {
  font-family: "Inter", sans-serif;
  background-color: #e6e6e6;
  height: 100%; }

body {
  background-color: #d2d2d2;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  height: 100%; }

h1 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #24464b; }

h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #2b5459; }

label {
  margin-bottom: 3px;
  width: 100%;
  font-size: 12px;
  display: block;
  font-weight: 500; }

header {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  background-color: white;
  border-bottom: solid 1px lightgray;
  display: flex;
  align-items: center; }
  header .header-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 12px;
    position: relative; }
    header .header-wrapper img.logo {
      height: 42px;
      margin-right: 8px; }
    header .header-wrapper .app-title {
      font-family: "Inter Tight", sans-serif;
      margin-top: -8px; }
      header .header-wrapper .app-title a {
        font-weight: 600;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 20px;
        color: #2b5459; }
      header .header-wrapper .app-title .user-label {
        position: absolute;
        font-size: 10px;
        bottom: 6px;
        z-index: 1;
        left: 63px;
        font-weight: normal;
        display: flex;
        align-items: center;
        gap: 6px; }
        header .header-wrapper .app-title .user-label .coach-mode-chip {
          background-color: #e3eeef;
          border: 1px solid #c8dddf;
          border-radius: 12px;
          padding: 2px 8px;
          display: inline-flex;
          align-items: center;
          gap: 4px; }
        header .header-wrapper .app-title .user-label .coach-mode-indicator {
          color: #478c95;
          font-weight: 500; }
        header .header-wrapper .app-title .user-label .client-name {
          color: #478c95;
          font-weight: 600; }
        header .header-wrapper .app-title .user-label .coach-name {
          color: inherit; }
      @media (max-width: 340px) {
        header .header-wrapper .app-title {
          display: none; } }
    header .header-wrapper .icon-menu {
      margin-left: auto;
      display: flex;
      height: 100%; }
      header .header-wrapper .icon-menu .menu-item {
        width: 54px;
        height: 100%;
        background-size: 34px;
        background-position: center;
        background-repeat: no-repeat; }
        header .header-wrapper .icon-menu .menu-item:hover {
          background-color: #f6f9fa;
          border-bottom: solid 2px #91babf; }
        header .header-wrapper .icon-menu .menu-item.bms {
          background-image: url(assets/img/icon-toilet-paper.png); }
        header .header-wrapper .icon-menu .menu-item.weight {
          background-image: url(assets/img/icon-scale.png);
          background-size: 30px; }
        header .header-wrapper .icon-menu .menu-item.logout {
          background-image: url(assets/img/icon-logout.png);
          border-left: solid 1px lightgray; }
        header .header-wrapper .icon-menu .menu-item.menu {
          background-image: url(assets/img/icon-menu.png);
          border-left: solid 1px lightgray;
          background-size: 42px; }
        header .header-wrapper .icon-menu .menu-item:hover {
          cursor: pointer; }
        header .header-wrapper .icon-menu .menu-item.active {
          border-bottom: 3px solid #478c95; }

body[data-client-id] header .app-title {
  margin-top: -18px; }
  body[data-client-id] header .app-title a {
    font-size: 18px; }
body[data-client-id] header .coach-name {
  display: none; }
body[data-client-id] .header .add-btn {
  display: none; }

main {
  padding-top: 54px;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  background-color: white; }

section {
  height: 100%; }
  section .heading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; }

form {
  display: flex;
  flex-direction: column;
  height: 100%; }
  form[data-mode="view"] {
    pointer-events: none; }
    form[data-mode="view"] .add {
      display: none; }

.form-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 14px; }

.form-item {
  width: calc(50% - 10px); }
  .form-item.full-width {
    width: 100%; }
  .form-item .field-wrapper {
    display: flex;
    align-items: center;
    gap: 6px; }
    .form-item .field-wrapper .icon {
      width: 26px;
      display: flex; }
      .form-item .field-wrapper .icon img {
        width: 100%; }

input,
select {
  width: 100%; }
  input.invalid,
  select.invalid {
    border: 2px solid #991818; }

select,
input {
  background-color: white;
  padding: 0.5rem;
  font-size: inherit;
  border: 1px solid lightgray;
  color: black;
  border-radius: 6px; }

.std-btn {
  padding: 8px 16px;
  border-radius: 12px;
  color: black;
  transition: background-color 300ms;
  text-align: center; }
  .std-btn:hover {
    cursor: pointer; }
  .std-btn.primary {
    background-color: #478c95;
    color: white;
    border: none; }
    .std-btn.primary:hover {
      cursor: pointer;
      background-color: #639da5; }
    .std-btn.primary.add {
      margin-top: auto;
      font-weight: 500;
      height: 44px;
      line-height: 44px;
      padding: 0 16px; }
      .std-btn.primary.add.loading {
        background: lightgray; }
        .std-btn.primary.add.loading:hover {
          cursor: default; }

.add-btn {
  background-color: #478c95;
  background-image: url(/assets/img/icon-plus.svg);
  background-size: cover;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-self: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: all 300ms; }
  .add-btn:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    transform: scale(1.1); }

.today-btn {
  margin-left: 10px;
  padding: 3px 12px;
  border-radius: 12px;
  cursor: pointer;
  color: #478c95;
  border: solid 1px #478c95;
  border-color: #478c95;
  transition: all 300ms; }
  .today-btn:hover, .today-btn.active {
    background: #edf4f4; }

.error-message {
  color: #991818;
  margin-top: 4px;
  font-size: 12px; }

input.time-picker {
  height: 35px;
  background-image: url(/assets/img/icon-clock.png);
  background-size: contain;
  background-color: transparent;
  border: none;
  outline: none;
  background-repeat: no-repeat;
  padding-left: 40px;
  width: 100px; }

.auth-page {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px; }
  .auth-page h1 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20%; }
  .auth-page .login-form {
    width: 100%;
    max-width: 300px; }
  .auth-page .register-link {
    text-align: center;
    font-size: 14px;
    margin-top: 16px; }
    .auth-page .register-link span#register-link {
      color: #478c95;
      transition: all 300ms; }
      .auth-page .register-link span#register-link:hover {
        cursor: pointer;
        color: #639da5; }

.date-picker-wrapper {
  text-align: center;
  margin: 12px auto 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  padding: 5px 10px;
  border-radius: 12px;
  box-shadow: 0 0px 10px -5px rgba(0, 0, 0, 0.2); }
  .date-picker-wrapper input {
    width: 100px;
    display: inline-block;
    padding: 7px 7px;
    text-align: center;
    font-weight: 500;
    font-size: 14px; }
  .date-picker-wrapper .back,
  .date-picker-wrapper .forward {
    font-size: 16px;
    cursor: pointer;
    padding: 22px;
    position: relative;
    border-radius: 50%; }
    .date-picker-wrapper .back:after,
    .date-picker-wrapper .forward:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      border: 1px solid #478c95;
      border-radius: 50%;
      width: 32px;
      height: 32px; }
    .date-picker-wrapper .back.disabled,
    .date-picker-wrapper .forward.disabled {
      cursor: default; }
      .date-picker-wrapper .back.disabled:after,
      .date-picker-wrapper .forward.disabled:after {
        border-color: lightgray; }
  .date-picker-wrapper .back::before,
  .date-picker-wrapper .forward::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent; }
  .date-picker-wrapper .back:before {
    border-right: 6px solid #478c95; }
  .date-picker-wrapper .forward:before {
    border-left: 6px solid #478c95; }
  .date-picker-wrapper .forward.disabled:before {
    border-left: 6px solid lightgray; }

.flatpickr-calendar {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important; }

.stool-type-selector {
  display: flex;
  gap: 2px;
  margin: 0 0.8%; }
  .stool-type-selector .stool-type-option {
    flex: 1;
    border: 1px solid lightgray;
    height: 130px;
    position: relative;
    background-size: 44px;
    background-repeat: no-repeat;
    background-position: center -12px;
    transition: background-position 300ms; }
    .stool-type-selector .stool-type-option:hover {
      cursor: pointer;
      border-color: #478c95;
      background-position: center -10px; }
    .stool-type-selector .stool-type-option .water {
      background-color: lightblue;
      position: absolute;
      top: 54%;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0.3;
      pointer-events: none; }
    .stool-type-selector .stool-type-option:before {
      content: attr(data-label);
      position: absolute;
      padding: 3px 4px;
      bottom: -9px;
      font-weight: bold;
      color: white;
      white-space: nowrap;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      border-radius: 6px;
      z-index: 1;
      transition: bottom 300ms; }
    .stool-type-selector .stool-type-option.selected {
      border-color: #478c95;
      background-position: center -115%; }
      .stool-type-selector .stool-type-option.selected:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid #478c95;
        pointer-events: none; }
      .stool-type-selector .stool-type-option.selected:before {
        bottom: -7px; }
    .stool-type-selector .stool-type-option[data-value="1"] {
      background-image: url(/assets/img/stool-type-1.png); }
      .stool-type-selector .stool-type-option[data-value="1"]:before {
        background: #a23b16; }
    .stool-type-selector .stool-type-option[data-value="2"] {
      background-image: url(/assets/img/stool-type-2.png); }
      .stool-type-selector .stool-type-option[data-value="2"]:before {
        background: #726224; }
    .stool-type-selector .stool-type-option[data-value="3"] {
      background-image: url(/assets/img/stool-type-3.png); }
      .stool-type-selector .stool-type-option[data-value="3"]:before {
        background: #4b5c37; }
    .stool-type-selector .stool-type-option[data-value="4"] {
      background-image: url(/assets/img/stool-type-4.png); }
      .stool-type-selector .stool-type-option[data-value="4"]:before {
        background: #254119; }
    .stool-type-selector .stool-type-option[data-value="5"] {
      background-image: url(/assets/img/stool-type-5.png); }
      .stool-type-selector .stool-type-option[data-value="5"]:before {
        background: #726224; }
    .stool-type-selector .stool-type-option[data-value="6"] {
      background-image: url(/assets/img/stool-type-6.png); }
      .stool-type-selector .stool-type-option[data-value="6"]:before {
        background: #a23b16; }
    .stool-type-selector .stool-type-option[data-value="7"]:before {
      background: #991818; }
    .stool-type-selector .stool-type-option[data-value="7"] .water {
      background-color: #8f3b13;
      opacity: 0.4; }
  @media screen and (min-width: 600px) {
    .stool-type-selector {
      gap: 8px; }
      .stool-type-selector .stool-type-option {
        background-position: center -16px;
        background-size: 66px;
        height: 200px; }
        .stool-type-selector .stool-type-option.selected, .stool-type-selector .stool-type-option:hover {
          background-position: center -14px; }
        .stool-type-selector .stool-type-option:before {
          font-size: 12px; } }

.constipation {
  flex: 1;
  background: linear-gradient(to left, #254119 0%, #4b5c37 45%, #726224 55%, #9c6a1c 80%, #a23b16 100%); }

#stool-consistency-slider {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  border-radius: 15px;
  background: linear-gradient(to right, #a23b16 0%, #9c6a1c 15%, #726224 25%, #4b5c37 34%, #254119 50%, #4b5c37 58%, #726224 65%, #9c6a1c 70%, #a23b16 85%, #991818 100%);
  outline: none;
  padding: 0;
  margin: 0; }
  #stool-consistency-slider:hover {
    cursor: pointer; }
  #stool-consistency-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: calc(100% / 21);
    border-radius: 20%;
    border: 2px solid white;
    background: none;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    margin-top: 0px; }
  #stool-consistency-slider::-moz-range-thumb {
    height: 30px;
    width: calc(100% / 21);
    border-radius: 20%;
    border: 2px solid white;
    background: none;
    cursor: pointer;
    position: relative;
    box-sizing: border-box; }
  #stool-consistency-slider::-ms-thumb {
    height: 30px;
    width: calc(100% / 21);
    border-radius: 20%;
    border: 2px solid white;
    background: none;
    cursor: pointer; }

.labels {
  position: relative; }
  .labels label {
    font-weight: 500; }
  .labels.range {
    display: flex;
    justify-content: space-between; }
  .labels .stool-consistency-scale {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 31px;
    pointer-events: none;
    font-size: 10px; }
    .labels .stool-consistency-scale .step {
      width: calc(100% / 21);
      color: white;
      text-align: center; }
    @media (min-width: 500px) {
      .labels .stool-consistency-scale {
        font-size: 12px; } }

.time {
  margin-bottom: 20px; }

#weight-unit-select {
  width: 60px; }

.body-scale {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-top: 6vh; }
  .body-scale .outer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #dae8ea;
    border-radius: 8%;
    box-shadow: 0 0px 10px -5px rgba(0, 0, 0, 0.2); }
    .body-scale .outer .inner {
      position: absolute;
      top: 2%;
      bottom: 2%;
      left: 2%;
      right: 2%;
      background: #f0f0f0;
      background: #f6f9fa;
      border-radius: 6%;
      z-index: 1;
      border: 1px solid lightgray; }
      .body-scale .outer .inner .inner-inner {
        position: absolute;
        top: 0.5%;
        bottom: 0.5%;
        left: 0.5%;
        right: 0.5%;
        background: #f0f0f0;
        background: #e9f1f2;
        border-radius: 5%;
        z-index: 1;
        padding-top: 12%; }
  .body-scale input {
    background: #f7f7f7; }

.data-management {
  background: #e9e9e9;
  min-height: calc(100vh - 53px);
  display: flex;
  flex-direction: column; }
  .data-management .header {
    padding: 30px 0 30px;
    display: flex;
    flex-direction: column;
    background: #f7f7f7; }
  .data-management .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0; }
  .data-management .no-entries-wrapper {
    z-index: 1;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center; }
    .data-management .no-entries-wrapper .no-entries {
      text-align: center;
      padding: 12px 12px 40px;
      animation: fadeInUp 0.4s ease-out both;
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .data-management .no-entries-wrapper .no-entries b {
        font-size: 20px; }
  .data-management .add-more-hint {
    padding: 20px 12px 40px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.4s ease-out both;
    flex-direction: column;
    gap: 16px; }
    .data-management .add-more-hint p {
      text-align: center; }
      .data-management .add-more-hint p b {
        line-height: 24px; }
  .data-management .or-line {
    color: gray; }
  .data-management .show-history-btn {
    padding: 3px 12px;
    border-radius: 12px;
    cursor: pointer;
    color: #478c95;
    transition: all 300ms;
    font-weight: 500; }
    .data-management .show-history-btn:hover {
      background: rgba(71, 140, 149, 0.1); }

.history-wrapper {
  padding: 80px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .history-wrapper select.history-config {
    max-width: 120px;
    text-align: center;
    margin: 12px 0; }
  .history-wrapper canvas.chart {
    max-width: 800px;
    margin-top: 30px; }

.table {
  z-index: 1;
  display: flex;
  overflow: visible;
  margin-top: -8px;
  border-bottom: solid 1px lightgray;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #e9e9e9;
  animation: fadeInUp 0.4s ease-out both; }
  .table .meta-cols-wrapper {
    display: flex;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-top-left-radius: 12px; }
    .table .meta-cols-wrapper .col:first-child .header {
      border-top-left-radius: 12px; }
  .table .scroll-container {
    position: relative;
    display: flex;
    flex: 1;
    z-index: 0; }
    .table .scroll-container .col {
      flex: 1; }
      .table .scroll-container .col:first-child .cell {
        border-left: none; }
      .table .scroll-container .col .cell {
        padding: 4px 7px;
        border-left: solid 1px white; }
        .table .scroll-container .col .cell.header {
          min-width: 54px; }
    @media (max-width: 482px) {
      .table .scroll-container[data-scroll-enabled="true"] {
        scrollbar-width: none;
        -ms-overflow-style: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: auto;
        user-select: none;
        cursor: grab; }
        .table .scroll-container[data-scroll-enabled="true"]::-webkit-scrollbar {
          display: none; }
        .table .scroll-container[data-scroll-enabled="true"]:active {
          cursor: grabbing; } }
  .table .col {
    display: flex;
    flex-direction: column;
    position: relative; }
    .table .col[data-colname="actions"] {
      box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.15);
      z-index: 1;
      position: relative;
      transform: translateZ(0);
      overflow: visible;
      border-top-right-radius: 12px; }
      .table .col[data-colname="actions"] .header {
        border-top-right-radius: 12px; }
    .table .col[data-colname="timestamp"] {
      width: 36px; }
      .table .col[data-colname="timestamp"] img {
        width: 18px;
        height: 18px; }
      @media (min-width: 700px) {
        .table .col[data-colname="timestamp"] {
          width: 64px; } }
    .table .col .cell {
      height: 40px;
      display: flex;
      padding: 6px;
      font-size: 10px;
      justify-content: center;
      align-items: center;
      font-weight: 500; }
      @media (min-width: 700px) {
        .table .col .cell {
          font-size: 14px;
          padding: 12px;
          height: 50px; } }
      .table .col .cell.header {
        background-color: #a3c6ca;
        height: 54px; }
        @media (min-width: 700px) {
          .table .col .cell.header {
            height: 64px; } }
      .table .col .cell.data {
        font-weight: 600; }
        .table .col .cell.data:nth-child(2n) {
          background-color: #e3e3e3; }
        .table .col .cell.data:nth-child(2n+1) {
          background-color: #f2f2f2; }
          .table .col .cell.data:nth-child(2n+1) .action:hover:after {
            background-color: #e3e3e3; }
      .table .col .cell[data-name="index"] {
        font-weight: 500; }
      .table .col .cell[data-name="weight"] {
        font-size: 12px; }
      .table .col .cell[data-name="stool-type"] .circle {
        width: auto;
        border-radius: 8px;
        display: inline-block;
        padding: 0px 6px;
        white-space: nowrap; }
      .table .col .cell[data-name="blood"][data-value="0"] .circle {
        transform: scale(0); }
      .table .col .cell[data-name="blood"][data-value="2"] .circle {
        transform: scale(0.2); }
      .table .col .cell[data-name="blood"][data-value="4"] .circle {
        transform: scale(0.4); }
      .table .col .cell[data-name="blood"][data-value="6"] .circle {
        transform: scale(0.6); }
      .table .col .cell[data-name="blood"][data-value="8"] .circle {
        transform: scale(0.8); }
      .table .col .cell[data-name="blood"][data-value="10"] .circle {
        transform: scale(1); }
      .table .col .cell .circle {
        border-radius: 50%;
        width: 22px;
        height: 22px;
        color: white;
        line-height: 22px;
        background-color: #2b5459;
        margin: auto;
        text-align: center;
        font-weight: 500; }
        @media (min-width: 700px) {
          .table .col .cell .circle {
            width: 27px;
            height: 27px;
            line-height: 27px; } }
        .table .col .cell .circle.forest-deep {
          background: #254119; }
        .table .col .cell .circle.olive-moss {
          background: #4b5c37; }
        .table .col .cell .circle.mustard-grove {
          background: #726224; }
        .table .col .cell .circle.burnt-amber {
          background: #9c6a1c; }
        .table .col .cell .circle.rusted-sienna {
          background: #a23b16; }
        .table .col .cell .circle.deep-crimson {
          background: #991818; }
      .table .col .cell.actions {
        padding: 0; }
        .table .col .cell.actions .action {
          padding: 0;
          width: 40px;
          height: 100%;
          position: relative; }
          @media (min-width: 700px) {
            .table .col .cell.actions .action {
              width: 50px; } }
          .table .col .cell.actions .action:hover {
            cursor: pointer; }
          .table .col .cell.actions .action img {
            position: relative;
            z-index: 1;
            width: 16px;
            height: auto; }
          .table .col .cell.actions .action.btn {
            display: flex; }
            .table .col .cell.actions .action.btn:after {
              z-index: 0;
              content: '';
              position: absolute;
              border-radius: 50%;
              top: 4px;
              bottom: 4px;
              left: 4px;
              right: 4px;
              background-color: lightgray;
              cursor: pointer;
              transform: scale(0);
              transition: transform 300ms; }
            .table .col .cell.actions .action.btn.view img {
              width: 22px; }
            .table .col .cell.actions .action.btn:hover:after {
              transform: scale(1); }
    .table .col img {
      display: block;
      width: 25px;
      height: 25px;
      margin: auto; }
      @media (min-width: 700px) {
        .table .col img {
          width: 32px;
          height: 32px; } }

body[data-client-id] .table .col[data-colname="actions"] .action.view {
  display: flex; }
body[data-client-id] .table .col[data-colname="actions"] .action.edit, body[data-client-id] .table .col[data-colname="actions"] .action.delete {
  display: none; }

body:not([data-client-id]) .table .col[data-colname="actions"] .action.view {
  display: none; }

.overlay {
  position: fixed;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms; }
  .overlay.visible {
    visibility: visible;
    opacity: 1; }
  .overlay .overlay-content {
    position: relative;
    padding: 12px 12px 24px;
    flex: 1;
    align-self: center;
    background-color: white;
    max-width: 650px;
    min-height: 100%;
    width: 100%;
    overflow: auto; }
  .overlay form {
    overflow: hidden; }
  .overlay .form-items {
    overflow: auto;
    padding-bottom: 20px; }
  .overlay .field-wrapper {
    flex-direction: row;
    border: solid 1px lightgray;
    padding: 6px 6px;
    border-radius: 8px;
    position: relative; }
    .overlay .field-wrapper select, .overlay .field-wrapper input {
      all: unset;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: auto;
      min-width: 0;
      padding: 0;
      margin: 0;
      font: inherit;
      color: inherit;
      box-shadow: none;
      outline: none;
      background: none;
      border: none;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding-left: 40px;
      height: 40px;
      line-height: 40px; }

.fullscreen-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 200ms, visibility 200ms; }

.fullscreen-menu.visible ~ .fullscreen-menu-backdrop,
#fullscreen-menu.visible ~ #fullscreen-menu-backdrop {
  opacity: 1;
  visibility: visible; }

.fullscreen-menu {
  position: fixed;
  width: 100%;
  max-width: 420px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all 200ms, transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px); }
  .fullscreen-menu.visible {
    visibility: visible;
    opacity: 1;
    transform: translateX(0); }
  .fullscreen-menu .menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    min-height: 100vh; }
    .fullscreen-menu .menu-content .menu-items {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 400px;
      margin: 0 auto;
      width: 100%; }
      .fullscreen-menu .menu-content .menu-items .coach-mode-section {
        margin-bottom: 20px; }
        .fullscreen-menu .menu-content .menu-items .coach-mode-section .active-coach-heading {
          color: #478c95;
          font-size: 16px;
          font-weight: 500;
          margin-bottom: 15px;
          display: flex;
          align-items: center;
          gap: 8px; }
          .fullscreen-menu .menu-content .menu-items .coach-mode-section .active-coach-heading .active-indicator {
            font-size: 12px;
            animation: pulse 2s infinite; }
@keyframes pulse {
  0%,
                        100% {
    opacity: 1;
    color: #478c95; }
  50% {
    opacity: 0.3;
    color: #478c95; } }
        .fullscreen-menu .menu-content .menu-items .coach-mode-section .inactive-coach-heading {
          font-size: 14px;
          font-weight: 400;
          margin-bottom: 12px;
          text-transform: uppercase;
          letter-spacing: 0.5px; }
        .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item {
          position: relative;
          border: 1px solid rgba(71, 140, 149, 0.3);
          background: rgba(71, 140, 149, 0.06);
          border-radius: 12px;
          padding: 16px 20px;
          margin-bottom: 12px;
          display: flex;
          align-items: center;
          gap: 16px;
          justify-content: space-between;
          transition: all 300ms;
          overflow: hidden;
          cursor: pointer; }
          .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item .client-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 4px; }
            .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item .client-content .client-name {
              color: #478c95;
              font-weight: 600;
              font-size: 16px; }
            .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item .client-content .client-email {
              color: #478c95;
              font-size: 13px;
              font-weight: 400; }
          .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item .end-coach-btn {
            background: white;
            border: 1px solid #991818;
            border-radius: 8px;
            color: #991818;
            font-size: 12px;
            font-weight: 500;
            padding: 6px 12px;
            cursor: pointer;
            transition: all 300ms;
            white-space: nowrap;
            position: absolute;
            top: 8px;
            right: 8px; }
            .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item .end-coach-btn:hover {
              transform: scale(1.04); }
          .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item.active {
            position: relative;
            background: rgba(71, 140, 149, 0.16); }
            .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item.active::before {
              content: '';
              position: absolute;
              left: 0;
              top: 0;
              bottom: 0;
              width: 8px;
              background: #0096a2;
              border-top-left-radius: 12px;
              border-bottom-left-radius: 12px; }
            .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item.active:hover {
              cursor: default; }
          .fullscreen-menu .menu-content .menu-items .coach-mode-section .client-item:hover:not(.active) {
            background: rgba(71, 140, 149, 0.14); }
      .fullscreen-menu .menu-content .menu-items .menu-spacer {
        flex: 1;
        min-height: 40px; }
      .fullscreen-menu .menu-content .menu-items .menu-item-link {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        color: white;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 300ms;
        padding: 16px 24px;
        text-align: center; }
        .fullscreen-menu .menu-content .menu-items .menu-item-link.logout-btn {
          background: rgba(153, 24, 24, 0.8);
          color: white;
          margin-top: auto; }
          .fullscreen-menu .menu-content .menu-items .menu-item-link.logout-btn:hover {
            background: #991818;
            color: white; }

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  .loading-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }
  .loading-overlay .spinner {
    border: 8px solid rgba(71, 140, 149, 0.2);
    border-top: 8px solid #478c95;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.icon-trash {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 10px;
  height: 12px;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px, inset -2px 0 0, inset 2px 0 0;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  margin-top: 4px; }
  .icon-trash .icon-trash::after,
  .icon-trash .icon-trash::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute; }
  .icon-trash .icon-trash::after {
    background: currentColor;
    border-radius: 3px;
    width: 16px;
    height: 2px;
    top: -4px;
    left: -5px; }
  .icon-trash .icon-trash::before {
    width: 10px;
    height: 4px;
    border: 2px solid;
    border-bottom: transparent;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    top: -7px;
    left: -2px; }

@media screen and (min-width: 500px) {
  .bowel-movement-item {
    font-size: 14px; } }
@media screen and (min-width: 700px) {
  header {
    height: 60px; }
    header .header-wrapper .app-title a {
      font-size: 24px; }
    header .header-wrapper .app-title span.user-label {
      bottom: 10px; }
    header .header-wrapper .icon-menu .menu-item {
      width: 60px;
      background-size: 34px; }

  main {
    padding-top: 60px; }

  .data-management {
    min-height: calc(100vh - 60px); } }
.mobile-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  z-index: 9999;
  max-width: 220px;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  /* So it doesn't block taps */ }

.mobile-tooltip.visible {
  opacity: 1;
  transform: translateY(0); }

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #eeeeee;
  transition: background-color 300ms; }
  .close-btn:after {
    content: 'X'; }
  .close-btn:hover {
    cursor: pointer;
    background-color: #f3f3f3; }

/*# sourceMappingURL=styles.css.map */
