[v-cloak] {
    display: none !important;
  }
  
  body {
    color: #000000;
    font-family: 'Avenir';
  }
  
  h1 {
    color: #213153;
    font-family: 'Avenir-Heavy';
    font-size: 2rem;
  }
  
  h2 {
    color: #213153;
    font-family: 'Avenir-Heavy';
    font-size: 1.5rem;
  }
  
  h3 {
    color: #213153;
    font-family: 'Avenir-Heavy';
    font-size: 1.25rem;
  }
  
  p {
    color: #213153;
    font-family: 'Avenir';
    /* font-size: 1rem; */
  }

  .bold-text {
    font-family: 'Avenir-Heavy';
  }

  .underline-text {
    text-decoration: underline;
  }
  
  button {
    cursor: pointer;
  }

  button:focus {
    outline: none;
  }

  button:disabled {
    opacity: .5 !important;
    cursor: unset !important;
  }
  
  input, select, textarea {
    border: 1px solid #D5DAE7;
    color: #213153;
    font-family: "Avenir-Medium";
    font-size: 1rem;
    padding: .25rem .5rem;
    border-radius: 8px;
    box-shadow: none;
  }
  
  
  input[readonly], textarea[readonly] {
    background: #e9ecef;
  }
  
  .header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .input-container {
    margin-top: .5rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
  }
  
  .input-container textarea {
    flex: 1 1 auto;
  }
  
  .checkbox-container {
    display: flex;
    align-items: center;
    gap: .25rem;
  }
  
  .checkbox-label {
    font-weight: unset !important;
    margin: 0 !important;
  }
  
  .input--invalid {
    border: 2px solid #ea0c4a;
  }
  
  .validation-message {
    font-size: .875rem;
    color: #ea0c4a;
    margin: 0;
  }
  
  .message-shift {
    margin-left: 11rem;
  }
  
  .contact-label {
    width: 8rem;
    margin-bottom: 0 !important;
  }
  
  .contact-label--longer {
    display: inline-block;
    word-wrap: break-word;
    width: 12rem;
    margin-bottom: 0 !important;
    align-self: flex-start;
    margin-right: 1rem;
  }
  
  .contact-select {
    padding: .25rem;
  }
  
  .save-button {
    color: #ffffff;
    background-color: #1a1f3e;
    border-radius: .25rem;
    padding: .5rem;
  }
  
  .save-button:disabled {
    opacity: .5;
  }
  
  .save-button:hover {
    color: #ffffff;
  }
  
  .save-button--empty {
    color: #1a1f3e !important;
    background-color: #ffffff !important;
    border: 2px solid #1a1f3e !important;
    border-radius: 2rem;
    font-family: "Avenir-Heavy";
  }
  
  .delete-button {
    color: #ffffff !important;
    background-color: #d11a2a !important;
    border-radius: 2rem;
  }
  
  .delete-button--empty {
    color: #d11a2a !important;
    background-color: #ffffff !important;
    border: 2px solid #d11a2a !important;
    border-radius: 2rem;
    font-family: "Avenir-Heavy";
  }
  
  .search-container {
    width: 15rem;
    display: inline-block;
  }
  
  .search__input {
    width: 100%;
    /* border-radius: 1.5rem; */
    /* background-color: var(--background-input-clr); */
    /* box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.06),
      0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.06); */
    /* color: var(--text-primary-clr); */
    /* font-family: var(--ff); */
    /* font-weight: 700; */
    /* font-size: 1.188rem; */
    /* border-width: 0; */
    /* z-index: 1020 !important; */
  }
  
  .search__input::placeholder {
    /* color: var(--text-placeholder-clr); */
  }
  
  .search__icon {
    /* color: var(--text-placeholder-clr) !important; */
  }
  
  .search__suggestions {
    position: absolute;
    max-height: 19.875em;
    width: 15rem;
    border-radius: 1.5em;
    background-color: #ffffff;
    box-shadow: 0 0 0.875em 0 rgba(0, 0, 0, 0.08),
      0 0.125em 0.188em 0 rgba(0, 0, 0, 0.16);
    padding-top: 0.5rem;
    overflow: auto;
    overflow-y: auto;
    z-index: 1020;
  }
  
  .search__suggestion {
    /* color: var(--text-primary-clr); */
    /* font-family: var(--ff); */
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    display: block;
    cursor: pointer;
  }
  
  .search__suggestion:hover,
  .search__suggestion:focus {
    background-color: #ebeef1;
    text-decoration: none;
  }
  
  .table {
    background: #FFFFFF;
    font-family: "Avenir";
  }
  
  .table-responsive {
    margin-bottom: 0 !important;
  }
  
  .table td {
    color: #000000;
    padding: .5rem 1rem;
    border-top: none;
    border-bottom: none;
  }
  
  .table tr {
    border: 1px solid rgba(0, 0, 0, .1);
    border-left: none;
    border-right: none;
  }
  
  .table-clickable tr {
    cursor: pointer;
  }
  
  .table th {
    top: -1px !important;
  }
  
  .page-link {
    color: #1a1f3e !important;
    background-color: #ffffff !important;
  }
  
  .page-item.active .page-link {
    color: #ffffff !important;
    background-color: #1a1f3e !important;
    border-color: #1a1f3e !important;
  }
  
  .field--checkbox {
    width: 11rem;
  }
  
  .toasted-container {
    top: 4rem !important;
    right: 3rem !important;
  }
  
  .toasted-primary {
    background: #1a1f3e !important;
  }
  
  .toasted-primary.error {
    background: #d11a2a !important;
  }
  
  .step-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
  }
  
  .step-item {
    font-size: 1.25rem;
    color: #C9CBD3;
    font-family: "Avenir-Heavy";
    cursor: pointer;
  }
  
  .step-item--active {
    color: #3B3F59;
  }
  
  .step-icon {
    margin: 0 1.25rem;
    color: #C9CBD3;
  }
  
  .tab-container {
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .tab-item {
    font-size: 1.5rem;
    color: #C9CBD3;
    font-family: "Avenir-Heavy";
    margin: 0 1rem;
    cursor: pointer;
    position: relative;
  }
  
  .tab-item--active {
    color: #3B3F59;
  }
  
  .tab-item--active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    content: "";
    background: #3B3F59;
    height: 4px;
    border-radius: 10px;
  }
  
  .admin-products-table td:nth-child(6) {
    width: 10rem;
    border: none;
    display: inline-block;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
  }
  
  .badge {
    font-size: 0.875rem !important;
    margin: 0.125rem !important;
    background-color: #1a1f3e !important;
    border-radius: 5px !important;
    font-weight: 400 !important;
    font-family: 'Avenir-Book' !important;
    padding: 4px 10px !important;
  }
  
  .lab-sheet-table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  .lab-sheet-cell {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
  }
  
  .lab-sheet-row:nth-child(even) {
    background-color: #dddddd;
  }
  
  .multiselect__option {
    white-space: unset !important;
  }
  
  #wineBottle, #wineBottleFixed,
  #zoomedWineBottle, #zoomedWineBottleFixed {
    background-image:
      linear-gradient(45deg, #ccc 25%, transparent 25%),
      linear-gradient(135deg, #ccc 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #ccc 75%),
      linear-gradient(135deg, transparent 75%, #ccc 75%);
    background-size:26px 26px; /* Must be a square */
    background-position:0 0, 13px 0, 13px -13px, 0px 13px; /* Must be half of one side of the square */
  }
  
  .table-responsive tr:nth-child(even) {
    background-color: #ffffff !important;
  }
  
  .table-responsive td {
    text-align: center;
    vertical-align: middle;
  }
  
  .table-responsive td:nth-child(2),
  .table-responsive td:nth-child(3) {
    text-align: unset !important;
    vertical-align: middle;
  }
  
  .accordion>.card>.card-header>.btn {
    text-align: left;
    background-color: #1a1f3e;
    border-color: #1a1f3e;
  }
  
  .card-body {
    padding: .5rem !important;
  }
  
  .main-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #313A51;
    padding: 0;
  }

  /* Login Screen Styles */
  .login-card {
    background: #313A51;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    width: 100%;
    margin: 2rem 0;
    position: relative;
  }

  .login-content {
    background-color: #D5DAE7;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
    border-radius: 2rem;
    overflow-y: auto;
  }

  .login-error {
    color: #d11a2a;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    font-weight: 400;
    margin: 0;
  }

  .login-leave-rooms-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .login-content p {
    font-size: 1.125rem;
  }
  
  .login-graphic {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0;
    margin-bottom: calc(-26%);
  }
  
  .bottle-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .bottle-svg {
    width: 60px;
    height: 180px;
    display: block;
  }
  
  .rating-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background: #19d1c6;
    color: #fff;
    font-size: 1rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    border-radius: 1.5rem;
    padding: 0.25rem 1rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    z-index: 2;
  }
  
  .people-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .people-svg {
    width: 180px;
    height: 80px;
    display: block;
  }
  
  .login-title {
    color: #4fd1c5;
    font-size: 2rem;
    font-family: 'Avenir-Book';
    font-weight: 400 !important;
    margin-bottom: 0.5rem;
    text-align: left;
    margin: 0;
    max-width: 50%;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }
  
  .login-powered {
    height: 2rem;
    width: auto;
    display: flex;
    align-self: flex-start;
    margin-bottom: 1rem;
  }
  .tastry-logo {
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    color: #51556f;
  }
  .login-subtitle {
    color: #313A51;
    font-size: 1.5rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
    margin-left: 0;
    max-width: 75%;
    align-self: flex-start;
  }
  .login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
    z-index: 1;
  }
  .login-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: .25rem;
    border: 1.5px solid #FFFFFF;
    font-size: 1rem;
    font-family: 'Avenir-Heavy';
    text-align: center;
    background: #fff;
    outline: none;
    transition: border 0.2s;
  }
  .login-input:focus {
    border: 1.5px solid #4fd1c5;
  }
  .login-btn {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: #313A51;
    color: #fff;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    font-weight: 400;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
    align-self: flex-end;
    width: auto;
    margin-top: 0.5rem;
  }
  .login-btn:hover {
    background: #313A51;
  }
  .login-btn:disabled {
    opacity: 0.5;
  }
  .arrow {
    font-size: 1.2em;
    margin-left: 0.25em;
  }
  .login-language {
    color: #8f94b0;
    font-size: 1rem;
    text-align: center;
  }
  .lang {
    color: #313A51;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    .login-card {
      flex-direction: column;
      display: flex;
      height: 100%;
    }
    .login-content {
      flex: 1 1 auto;
      min-height: 0;
      height: auto;
      border-radius: 2rem 2rem 0 0;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 2.5rem 1.25rem 1rem 1.25rem;
    }
    .main-wrapper {
      padding: 0;
      min-height: 100%;
      height: 100%;
    }
    .bottle-svg {
      width: 40px;
      height: 120px;
    }
    .people-svg {
      width: 110px;
      height: 50px;
    }
    .login-title {
    }
    .login-input {
      padding: 0.5rem 1rem;
    }
    .login-btn {
      margin-top: 0.25rem;
    }
    .login-subtitle {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .login-powered {
      margin-bottom: 0.75rem;
    }
  }
  @media (min-width: 601px) and (max-width: 900px) {
    .login-card {
      max-width: 80vw;
    }
    .login-content {
      padding: 2rem 1.5rem 1rem 1.5rem;
    }
    .bottle-svg {
      width: 50px;
      height: 150px;
    }
    .people-svg {
      width: 140px;
      height: 65px;
    }
  }
  
  /* Palate Survey Splash Screen Styles */
  .palate-survey-splash-card {
    background: #313A51;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    max-width: 480px;
    width: 100%;
    margin: 2rem auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 80%;
    position: relative;
  }
  .palate-survey-splash-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin: 0;
  }
  .palate-back-arrow {
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  .palate-survey-splash-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    flex: 1;
    min-width: 0;
  }
  .palate-survey-splash-box {
    background: #D5DAE7;
    border-radius: 1.5rem;
    margin: 0 .5rem 2rem .5rem;
    padding: 2rem 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
    overflow-y: auto;
  }
  .palate-survey-splash-desc {
    margin-bottom: 1rem;
  }
  .palate-survey-splash-desc-main {
    color: #213153;
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    margin-bottom: 1rem;
    text-align: left;
  }
  .palate-survey-splash-desc-sub {
    color: #213153;
    font-size: 1.125rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    text-align: left;
    line-height: 1.2;
    white-space: pre-line;
  }
  .palate-survey-splash-graphic-container {
    flex: 1;
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
  }
  .palate-survey-splash-graphic {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: left bottom;
  }
  .palate-survey-splash-btn {
    background: #00B1C1;
    color: #fff;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-self: flex-end;
  }
  @media (max-width: 600px) {
    .palate-survey-splash-card {
      max-width: 100vw;
      border-radius: 0;
      margin: 0;
      min-height: 100%;
      height: 100%;
    }
    .palate-survey-splash-header {
      padding: 1rem;
    }
    .palate-survey-splash-box {
    }
    .palate-survey-splash-desc-main {
    }
    .palate-survey-splash-desc-sub {
    }
    .palate-survey-splash-btn {
      align-self: flex-end;
    }
  }
  
  /* Palate Survey Questions Styles */
  .palate-survey-questions {
    background: #D5DAE7;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .palate-survey-questions-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #D5DAE7;
    margin: 0;
  }

  .palate-survey-questions-back-arrow {
    color: #213153;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .palate-survey-questions-next-arrow {
    color: #213153;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  .palate-survey-questions-next-arrow--disabled {
    cursor: wait;
    pointer-events: none;
    opacity: 0.7;
  }

  .palate-survey-questions-title-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .palate-survey-questions-title {
    color: #213153;
    font-size: 1.75rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .palate-survey-questions-title-block .taste-vault-header-logout {
    flex-shrink: 0;
  }

  .palate-survey-questions-content {
    padding: 0 1rem;
    overflow-y: auto;
  }

  .round-title {
    color: #213153;
    font-size: 1.125rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
  }

  .round-description {
    color: #213153;
    font-size: 1rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    white-space: pre-line;
  }

  .survey-question {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .question-label {
    display: block;
    color: #213153;
    font-size: 1.25rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    margin-bottom: .5rem;
    white-space: pre-line;
  }

  .question-description {
    color: #213153;
    font-size: 1rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    white-space: pre-line;
    margin-bottom: .5rem;
  }

  .question-image {
    width: auto;
    height: auto;
    max-height: 10rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .question-error {
    color: #FF4438;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    margin: 0;
  }

  .required {
    color: #FF4438;
  }

  .radio-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .radio-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    background: #fff;
    width: 100%;
    max-width: 480px;
  }

  .radio-option:hover {
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  }

  .radio-option:not(:has(.question-image)) {
    border: none;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    margin-bottom: 0;
  }

  .radio-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .radio-content:not(:has(.question-image)) {
    flex-direction: row !important;
  }

  .radio-content .question-image {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 1rem;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .radio-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .radio-bottom:not(:has(.question-image)) {
    align-items: center !important;
  }

  .radio-label {
    font-size: 1rem;
    line-height: 1.4;
  }

  @media (max-width: 600px) {
    .radio-option {
      min-width: 120px;
      max-width: 100%;
      padding: 0.75rem;
    }
    .radio-content .question-image {
      max-width: 80px;
      max-height: 80px;
    }
    .radio-label {
      font-size: 0.95rem;
    }
  }

  .other-input {
    flex: 1;
    margin-left: 0.5rem;
    border: none;
    border-bottom: 1px solid #213153;
    background: transparent;
    color: #213153;
    font-size: 1.125rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    padding: 0.25rem 0;
    border-radius: 0;
  }

  .other-input:disabled {
    opacity: 0.5;
    border-bottom-color: #8F94B0;
  }

  .other-input:focus {
    outline: none;
    border-bottom-color: #00B1C1;
  }

  .survey-question-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D5DAE7;
    border-radius: 0;
  }

  .survey-question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
  }

  .survey-question-btn {
    background: #313A51;
    color: #fff;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }

  .survey-question-btn:hover {
    background: #313A51;
  }

  .survey-question-btn:disabled {
    opacity: 0.9;
    cursor: wait;
  }

  .survey-question-btn .loading-dots--next {
    justify-content: center;
    min-width: 4rem;
    min-height: 1.5rem;
  }

  .survey-question-btn .loading-dots--next .loading-dot {
    background-color: rgba(255, 255, 255, 0.9);
  }

  @media (max-width: 600px) {
    .palate-survey-questions-header {
      padding: 1rem;
    }

    .palate-survey-questions-title {
      font-size: 1.5rem;
    }

    .survey-question {
      padding: 1rem 1.25rem;
    }

    .question-label {
      font-size: 1.125rem;
    }

    .radio-group {
      gap: .25rem;
    }

    .radio-option {
      gap: 0.75rem;
    }

    .radio-label {
      font-size: 1rem;
    }

    .other-input {
      font-size: 1rem;
    }
  }
  
  /* Waiting Screen Styles */
  .waiting-card {
    background: #313A51;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    width: 100%;
    margin: 2rem 0;
    position: relative;
  }

  .waiting-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 2rem 5.75rem 1rem 1.5rem;
  }

  .waiting-title {
    color: #6BCCD4;
    font-size: 2rem;
    font-family: 'Avenir-Book';
    font-weight: 400;
    margin: 0;
    align-self: flex-start;
  }

  .waiting-graphic {
    width: 100%;
    height: auto;
  }

  .waiting-content {
    background-color: #D5DAE7;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 1rem 1.5rem;
    border-radius: 2rem;
    overflow-y: auto;
  }

  .waiting-powered {
    height: 2rem;
    width: auto;
    display: flex;
    align-self: flex-end;
    margin-top: .5rem;
  }

  .waiting-subtitle {
    color: #313A51;
    font-size: 1.5rem;
    font-family: 'Avenir-Heavy';
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
    align-self: flex-start;
    margin-top: 1rem;
  }

  .waiting-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .waiting-next-btn {
    background: #00B1C1;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Avenir-Heavy';
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .waiting-back-btn {
    background: #313A51;
    border: none;
    border-radius: 2rem;
    color: #FFFFFF;
    font-size: .875rem;
    font-family: 'Avenir-Book';
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
  }

  @media (max-width: 600px) {
    .waiting-card {
      margin: 0;
      min-height: 100%;
      border-radius: 0;
    }

    .waiting-content {
      padding: 1.5rem;
      border-radius: 2rem 2rem 0 0;
      flex: 1;
    }

    .waiting-title {
      font-size: 1.5rem;
    }
  }
  
  /* Checkbox Group Styles */
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
  }

  .checkbox-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    background: #fff;
    width: 100%;
  }

  .checkbox-option:hover {
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  }

  .checkbox-option:not(:has(.question-image)) {
    border: none;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    margin-bottom: 0;
  }

  .checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .checkbox-content:not(:has(.question-image)) {
    flex-direction: row !important;
  }

  .checkbox-content .question-image {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 1rem;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .checkbox-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .checkbox-bottom:not(:has(.question-image)) {
    align-items: center !important;
  }

  .checkbox-label {
    font-size: 1rem;
    line-height: 1.4;
  }

  @media (max-width: 600px) {
    .checkbox-option {
      min-width: 120px;
      max-width: 100%;
      padding: 0.75rem;
    }
    .checkbox-content .question-image {
      max-width: 80px;
      max-height: 80px;
    }
    .checkbox-label {
      font-size: 0.95rem;
    }
  }

  .other-input {
    flex: 1;
    margin-left: 0.5rem;
    border: none;
    border-bottom: 1px solid #213153;
    background: transparent;
    color: #213153;
    font-size: 1.125rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    padding: 0.25rem 0;
    border-radius: 0;
  }

  .other-input:disabled {
    opacity: 0.5;
    border-bottom-color: #8F94B0;
  }

  .other-input:focus {
    outline: none;
    border-bottom-color: #00B1C1;
  }

  .survey-question-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D5DAE7;
    border-radius: 0;
  }

  .survey-question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
  }

  .survey-question-btn {
    background: #313A51;
    color: #fff;
    font-size: 1rem;
    font-family: 'Avenir-Book';
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }

  .survey-question-btn:hover {
    background: #313A51;
  }

  @media (max-width: 600px) {
    .palate-survey-questions-header {
      padding: 1rem;
    }

    .palate-survey-questions-title {
      font-size: 1.5rem;
    }

    .survey-question {
      padding: 1rem 1.25rem;
    }

    .question-label {
      font-size: 1.125rem;
    }

    .radio-group {
      gap: .25rem;
    }

    .radio-option {
      gap: 0.75rem;
    }

    .radio-label {
      font-size: 1rem;
    }

    .other-input {
      font-size: 1rem;
    }
  }
  
  /* Multiple Choice Grid Styles */
  .multiple-choice-grid-container {
    overflow-x: auto;
  }

  .multiple-choice-grid {
    width: 100%;
    margin: 1rem 0;
  }

  .multiple-choice-grid table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    /* table-layout: fixed; */
  }

  .multiple-choice-grid th {
    padding: 1rem;
    text-align: center;
    color: #213153;
    font-family: 'Avenir-Heavy';
    font-size: 1rem;
    border-bottom: 2px solid #D5DAE7;
    word-wrap: break-word;
    hyphens: auto;
  }

  .multiple-choice-grid th:first-child {
    text-align: left;
    /* width: 25%; */
  }

  .multiple-choice-grid td {
    padding: 1rem;
    text-align: center;
    color: #213153;
    font-family: 'Avenir-Book';
    font-size: 1rem;
    border-bottom: 1px solid #D5DAE7;
    vertical-align: middle;
    /* word-wrap: break-word; */
    hyphens: auto;
    min-width: 2rem;
  }

  .multiple-choice-grid td:first-child {
    text-align: left;
    font-family: 'Avenir-Medium';
  }

  .multiple-choice-grid input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #D5DAE7;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
  }

  /* .multiple-choice-grid input[type="radio"]:checked {
    background: #FFFFFF;
  }

  .multiple-choice-grid input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */

  /* Responsive styles for multiple choice grid */
  @media (max-width: 600px) {
    .multiple-choice-grid {
      margin: 0.5rem 0;
    }

    .multiple-choice-grid table {
      /* table-layout: fixed; */
    }

    .multiple-choice-grid th {
      padding: 0.5rem 0.25rem;
    }

    .multiple-choice-grid td {
      padding: 0.5rem 0.25rem;
    }

    .multiple-choice-grid th:first-child {
      /* width: 25%; */
      padding-right: 0.5rem;
    }

    .multiple-choice-grid td:first-child {
      padding-right: 0.5rem;
    }

    .multiple-choice-grid input[type="radio"] {
      width: 18px;
      height: 18px;
    }

    .multiple-choice-grid input[type="radio"]:checked::after {
      width: 10px;
      height: 10px;
    }
  }
  

  
  /* Smooth transitions for question elements */
  .survey-question {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
  }
  
  /* Persistent red border for unanswered questions */
  .survey-question--unanswered {
    box-shadow: 0 0 0 2px #ff6b6b !important;
  }
  
  /* Loading Indicator Styles */
  .loading-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.5rem 0;
  }
  
  .loading-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .loading-dot {
    width: 8px;
    height: 8px;
    background-color: #6B7280;
    border-radius: 50%;
    animation: loading-pulse 2s ease-in-out infinite;
  }
  
  .loading-dot:nth-child(1) {
    animation-delay: 0s;
  }
  
  .loading-dot:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .loading-dot:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .loading-dot:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .loading-dot:nth-child(5) {
    animation-delay: 0.8s;
  }
  
  @keyframes loading-pulse {
    0%, 100% {
      opacity: 0.3;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
  }

  .loading-dots--next {
    gap: 4px;
  }

  .loading-dots--next .loading-dot {
    width: 6px;
    height: 6px;
  }

  .taste-vault-header-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    background: transparent;
    border-radius: 2rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    font-size: 0.8125rem;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
  }

  .taste-vault-header-logout:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .waiting-header .taste-vault-header-logout {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
  }

  .taste-vault-header-logout--light {
    border-color: rgba(33, 49, 83, 0.35);
    color: #213153;
  }

  .taste-vault-header-logout--light:hover:not(:disabled) {
    background: rgba(33, 49, 83, 0.06);
    border-color: rgba(33, 49, 83, 0.55);
  }

  .taste-vault-logout-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(26, 31, 62, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .taste-vault-logout-modal {
    background: #ffffff;
    border-radius: 1.25rem;
    max-width: 22rem;
    width: 100%;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.25);
  }

  .taste-vault-login-confirm-modal {
    max-width: 26rem;
  }

  .taste-vault-login-confirm-details {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    background: #f4f6fa;
    border-radius: 0.75rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    color: #213153;
  }

  .taste-vault-login-confirm-details dt {
    margin: 0;
    font-size: 0.75rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(33, 49, 83, 0.65);
  }

  .taste-vault-login-confirm-details dd {
    margin: 0.15rem 0 0.85rem;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .taste-vault-login-confirm-details dd:last-child {
    margin-bottom: 0;
  }

  .taste-vault-logout-modal-title {
    margin: 0 0 0.75rem;
    font-size: 1.375rem;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    color: #213153;
  }

  .taste-vault-logout-modal-text {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-family: 'Avenir-Book', Avenir, sans-serif;
    color: #213153;
    line-height: 1.45;
  }

  .taste-vault-logout-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .taste-vault-logout-modal-cancel {
    background: #ffffff;
    border: 2px solid #1a1f3e;
    border-radius: 2rem;
    color: #1a1f3e;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    font-size: 0.9375rem;
    padding: 0.5rem 1.25rem;
  }

  .taste-vault-logout-modal-confirm {
    background: #313A51;
    border: none;
    border-radius: 2rem;
    color: #ffffff;
    font-family: 'Avenir-Heavy', Avenir, sans-serif;
    font-size: 0.9375rem;
    padding: 0.5rem 1.25rem;
  }

  .taste-vault-logout-modal-confirm:hover:not(:disabled) {
    filter: brightness(1.05);
  }

  .taste-vault-logout-modal-cancel:hover:not(:disabled) {
    background: #f0f2f8;
  }
