/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */



 .ts-control {
    border: 1px solid rgb(107, 114, 128);
    padding: 8px 12px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 999px;
    display: flex;
    flex-wrap: wrap;
  }


  .full .ts-control {
    background-color: rgb(255, 255, 255);
  }
  .disabled .ts-control, .disabled .ts-control * {
    cursor: default !important;
  }
  .focus .ts-control {
    box-shadow: none;
  }
  .ts-control > * {
    vertical-align: baseline;
    display: inline-block;
  }

  .ts-wrapper.multi .ts-control > div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #f2f2f2;
    color: #303030;
    border: 0 solid rgb(190, 190, 190);
  }
  .ts-wrapper.multi .ts-control > div.active {
    background: #e8e8e8;
    color: #303030;
    border: 0 solid #cacaca;
  }
  .ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
    color: rgb(124.5, 124.5, 124.5);
    background: white;
    border: 0 solid white;
  }
  .ts-control > input {
    flex: 1 1 auto;
    min-width: 7rem;
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    user-select: auto !important;
    box-shadow: none !important;
  }


  .ts-control > input::-ms-clear {
    display: none;
  }
  .ts-control > input:focus {
    outline: none !important;
  }
  .has-items .ts-control > input {
    margin: 0 4px !important;
  }
  .ts-control.rtl {
    text-align: right;
  }
  .ts-control.rtl.single .ts-control:after {
    left: 18px;
    right: auto;
  }
  .ts-control.rtl .ts-control > input {
    margin: 0 4px 0 -2px !important;
  }
  .disabled .ts-control {
    opacity: 0.5;
    background-color: #fafafa;
  }
  .input-hidden .ts-control > input {
    opacity: 0;
    position: absolute;
    left: -10000px;
  }
  
.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid rgb(107, 114, 128);
  background: rgb(255, 255, 255);
  margin-top: 0.35rem; /* z.B. 4px Abstand */
  box-sizing: border-box;
  border-radius: 18px; /* alle 4 Ecken rund */
}
  .ts-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden;
  }


.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 0.375rem 0.5rem; /* py-1.5 px-2 */
  margin: 0.125rem 0.25rem; /* my-0.5 mx-1 */
  border-radius: 12px;  /* rounded-md */
  font-size: 0.875rem;      /* text-sm */
}
  .ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: 0.5;
  }
  .ts-dropdown [data-selectable].option {
    opacity: 1;
    cursor: pointer;
  }
  .ts-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none;
  }
  .ts-dropdown .optgroup-header {
    color: #303030;
    background: rgb(255, 255, 255);
    cursor: default;
  }
  .ts-dropdown .active {
    background-color: #f5fafd;
  }

  .ts-dropdown .create {
    color: rgba(48, 48, 48, 0.5);
  }
  .ts-dropdown .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 5px 8px;
  }
  .ts-dropdown .spinner::after {
    content: " ";
    display: block;
    width: 24px;
    height: 24px;
    margin: 3px;
    border-radius: 50%;
    border: 5px solid rgb(107, 114, 128);
    border-color: rgb(107, 114, 28) transparent rgb(107, 114, 128) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .ts-dropdown-content {
    overflow: hidden auto;
    max-height: 200px;
    scroll-behavior: smooth;
  }
  
  .ts-wrapper.plugin-drag_drop .ts-dragging {
    color: transparent !important;
  }
  .ts-wrapper.plugin-drag_drop .ts-dragging > * {
    visibility: hidden !important;
  }
  
  .plugin-checkbox_options:not(.rtl) .option input {
    margin-right: 0.5rem;
  }
  
  .plugin-checkbox_options.rtl .option input {
    margin-left: 0.5rem;
  }
  
  /* stylelint-disable function-name-case */
  .plugin-clear_button {
    --ts-pr-clear-button: 1em;
  }
  .plugin-clear_button .clear-button {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(8px - 6px);
    margin-right: 0 !important;
    background: transparent !important;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
    right: max(var(--ts-pr-caret), 8px);
  }
  .plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
    opacity: 1;
  }
  
  .ts-wrapper .dropdown-header {
    position: relative;
    padding: 10px 8px;
    border-bottom: 1px solid rgb(190, 190, 190);
    background: #f8f8f8;
    border-radius: 18px 18px 0 0;
  }
  .ts-wrapper .dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: 0.4;
    margin-top: -12px;
    line-height: 18px;
    font-size: 18px !important;
  }
  .ts-wrapper .dropdown-header-close:hover {
    color: black;
  }
  
  .plugin-dropdown_input.focus.dropdown-active .ts-control {
    box-shadow: none;
  }

  .plugin-dropdown_input .dropdown-input {
    border: 1px solid rgb(107, 114, 128);
    border-width: 0 0 1px;
    display: block;
    padding: 8px 12px;
    box-shadow: none;
    width: 100%;
    background: transparent;
  }
  .plugin-dropdown_input .items-placeholder {
    border: 0 none !important;
    box-shadow: none !important;
    width: 100%;
  }
  .plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
    display: none !important;
  }
  
  .ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
    min-width: 0;
  }
  .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
    flex: none;
    min-width: 4px;
  }
  .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
    color: transparent;
  }
  
  .ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
    display: flex;
  }
  .ts-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
  }
  .ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none;
  }
  .ts-dropdown.plugin-optgroup_columns .optgroup::before {
    display: none;
  }
  .ts-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none;
  }
  
  .ts-wrapper.plugin-remove_button .item {
    display: inline-flex;
    align-items: center;
  }
  .ts-wrapper.plugin-remove_button .item .remove {
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 0 6px;
    border-radius: 0 18px 18px 0;
    box-sizing: border-box;
  }
  .ts-wrapper.plugin-remove_button .item .remove:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  .ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
    background: none;
  }
  .ts-wrapper.plugin-remove_button .remove-single {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px;
  }
  
  .ts-wrapper.plugin-remove_button:not(.rtl) .item {
    padding-right: 0 !important;
  }
  .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
    border-left: 1px solid rgb(107, 114, 128);
    margin-left: 6px;
  }
  .ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
    border-left-color: #cacaca;
  }
  .ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
    border-left-color: white;
  }
  
  .ts-wrapper.plugin-remove_button.rtl .item {
    padding-left: 0 !important;
  }
  .ts-wrapper.plugin-remove_button.rtl .item .remove {
    border-right: 1px solid rgb(107, 114, 128);
    margin-right: 6px;
  }
  .ts-wrapper.plugin-remove_button.rtl .item.active .remove {
    border-right-color: #cacaca;
  }
  .ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
    border-right-color: white;
  }
  
  :root {
    --ts-pr-clear-button: 0px;
    --ts-pr-caret: 0px;
    --ts-pr-min: .75rem;
  }
  
  .ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
    cursor: pointer;
  }
  
  .ts-control:not(.rtl) {
    padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
  }
  
  .ts-control.rtl {
    padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
  }
  
  .ts-wrapper {
    position: relative;
  }
  
  .ts-dropdown,
  .ts-control,
  .ts-control input {
    color: #303030;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
  }
  

  .ts-control,
  .ts-wrapper.single.input-active .ts-control {
    background: rgb(255, 255, 255); 
  }
  
  .ts-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
  }

  /* Add these overrides at the end of the file to handle dark mode */
  .dark .full .ts-control {
    background-color: rgb(40, 41, 45) /* dark:bg-gray-800 equivalent */
  }

  .dark .ts-dropdown {
    background: rgb(34, 31, 31); /* dark:bg-gray-800 equivalent */
    border: 1px solid rgb(85, 85, 88); /* dark:border-gray-700 equivalent */
    border-radius: 18px;
  }

  /* Fix for the input field background and text color */
.dark .ts-control,
.dark .ts-wrapper.single.input-active .ts-control {
    background: rgb(40, 41, 45); /* dark:bg-gray-800 */
    color: #ebe5eb; /* dark:text-gray-200 */
    border: 1px solid rgb(85, 85, 88); /* weiße Border für Dark Mode */
    border-radius: 9999px; /* falls nicht schon geerbt */
}


/* Dark Mode Hover für ts-control */
.dark .ts-control:hover,
.dark .ts-wrapper.single.input-active .ts-control:hover {
    background: rgb(36, 36, 39); /* Hintergrund leicht transparent */
    transition: background 0.3s ease;   /* Dauer 300ms */
}



  /* Fix for the placeholder text color */
  .dark .ts-control input::placeholder {
    color: rgb(159, 159, 169); /* dark:text-gray-400 equivalent */
  }

  .dark .ts-dropdown .option,
  .dark .ts-dropdown .create {
    color: #e5e7eb; /* dark:text-gray-200 equivalent */
  }

  .dark .ts-dropdown .optgroup-header {
    color: rgb(159, 159, 169); /* dark:text-gray-400 equivalent */
    background: #111827; /* dark:bg-gray-900 equivalent */
  }

  .dark .ts-dropdown .active {
    background-color: #104e64; /* dark:bg-gray-700 equivalent */
    color: #f9fafb; /* dark:text-white equivalent */
  }

  .dark .ts-wrapper .dropdown-header {
    background: #111827; /* dark:bg-gray-900 equivalent */
  }

  .dark .ts-wrapper .dropdown-header-close {
    color: rgb(159, 159, 169); /* dark:text-gray-400 equivalent */
  }

  .dark .ts-wrapper .dropdown-header-close:hover {
    color: #e5e7eb; /* dark:text-gray-200 equivalent */
  }

  /* Fix for the "Add satellite at X" text in create option */
  .dark .ts-dropdown .create {
    color: #e5e7eb; /* light text color */
  }


  .dark .dropdown-input:focus {
    outline: transparent;
  }

.dropdown-input:focus {
    outline: transparent;
  }

  .ts-dropdown .active {
    background-color: rgb(231, 232, 234);
  }


.ts-control:focus,
.ts-control:focus-within,
.ts-control:focus-visible,
.ts-control input:focus,
.ts-control input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Rounded scrollbar for dropdown */
.ts-dropdown .ts-dropdown-content::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.ts-dropdown .ts-dropdown-content::-webkit-scrollbar-thumb {
  background: #d1d5db; /* Tailwind gray-300 */
  border-radius: 12px;
}

.ts-dropdown .ts-dropdown-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 18px;
}

/* Optional: dark mode support */
.dark .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-thumb {
  background: #444654; /* Tailwind gray-700 */
}

.ts-dropdown {
  overflow: hidden;
}

/* Add a dropdown arrow to the right of the control */
.ts-control::after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1.25rem; /* adjust as needed for padding */
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg fill=\"none\" stroke=\"gray\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 9l6 6 6-6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>") no-repeat center/contain;
  transition: transform 0.2s;
}

/* Optional: rotate arrow when open */
.ts-wrapper.dropdown-active .ts-control::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Optional: dark mode arrow color */
.dark .ts-control::after {
  background: url("data:image/svg+xml;utf8,<svg fill=\"none\" stroke=\"white\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 9l6 6 6-6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>") no-repeat center/contain;
}

.ts-wrapper.dropdown-active .ts-control {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Dark mode styles for satellite favorites plugin */
.dark .satellite-star-btn {
  color: rgba(185, 185, 192, 0.5);
}

.dark .satellite-star-btn:hover {
  background: transparent;
  color: rgb(var(--warning));
}

.dark .satellite-star-btn.is-favorite {
  color: rgb(var(--warning));
}

.dark .satellite-default-btn {
  color: rgba(185, 185, 192, 0.5);
}

.dark .satellite-default-btn:hover {
  background: transparent;
  color: rgb(var(--primary));
}

.dark .satellite-confirm-modal {
  background: rgb(13, 13, 16);
  border-color: rgb(34, 34, 35);
}

.dark .satellite-confirm-header,
.dark .satellite-confirm-actions {
  border-color: rgb(34, 34, 35);
}

.dark .satellite-confirm-cancel {
  border-color: rgb(63, 63, 70);
}

.dark .satellite-confirm-cancel:hover {
  background: rgb(24, 24, 27);
}

/* ...existing code... */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: Geist, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-right-1 {
  right: -0.25rem;
}
.-top-1 {
  top: -0.25rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-1 {
  bottom: 0.25rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-\[9px\] {
  bottom: 9px;
}
.bottom-full {
  bottom: 100%;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-3 {
  left: 0.75rem;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.right-3 {
  right: 0.75rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-2 {
  top: 0.5rem;
}
.top-4 {
  top: 1rem;
}
.top-\[10px\] {
  top: 10px;
}
.top-full {
  top: 100%;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[1000\] {
  z-index: 1000;
}
.z-\[1100\] {
  z-index: 1100;
}
.z-\[1200\] {
  z-index: 1200;
}
.z-\[1300\] {
  z-index: 1300;
}
.z-\[35\] {
  z-index: 35;
}
.z-\[60\] {
  z-index: 60;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-2 {
  grid-column-start: 2;
}
.row-span-3 {
  grid-row: span 3 / span 3;
}
.row-start-1 {
  grid-row-start: 1;
}
.row-start-2 {
  grid-row-start: 2;
}
.row-start-3 {
  grid-row-start: 3;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.\!table {
  display: table !important;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-28 {
  height: 7rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[400px\] {
  height: 400px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-svh {
  height: 100svh;
}
.max-h-24 {
  max-height: 6rem;
}
.max-h-48 {
  max-height: 12rem;
}
.max-h-64 {
  max-height: 16rem;
}
.max-h-80 {
  max-height: 20rem;
}
.max-h-\[60vh\] {
  max-height: 60vh;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-9 {
  min-height: 2.25rem;
}
.min-h-\[320px\] {
  min-height: 320px;
}
.min-h-\[360px\] {
  min-height: 360px;
}
.min-h-\[96px\] {
  min-height: 96px;
}
.min-h-dvh {
  min-height: 100dvh;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-svh {
  min-height: 100svh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[50px\] {
  width: 50px;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: fit-content;
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[300px\] {
  min-width: 300px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-\[1920px\] {
  max-width: 1920px;
}
.max-w-\[calc\(100\%-160px\)\] {
  max-width: calc(100% - 160px);
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.table-fixed {
  table-layout: fixed;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s infinite linear;
}
.cursor-help {
  cursor: help;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  user-select: none;
}
.resize-y {
  resize: vertical;
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[minmax\(300px\2c 325px\)_minmax\(0\2c 1fr\)\] {
  grid-template-columns: minmax(300px,325px) minmax(0,1fr);
}
.grid-rows-\[auto_minmax\(0\2c 1fr\)_auto\] {
  grid-template-rows: auto minmax(0,1fr) auto;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0 {
  gap: 0px;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
}
.divide-outline-variant > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(var(--outline-variant));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-y-auto {
  overflow-y: auto;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.break-words {
  overflow-wrap: break-word;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-none {
  border-style: none;
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-200\/80 {
  border-color: rgb(229 231 235 / 0.8);
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-outline {
  --tw-border-opacity: 1;
  border-color: rgb(var(--outline) / var(--tw-border-opacity, 1));
}
.border-outline-variant {
  border-color: rgb(var(--outline-variant));
}
.border-primary {
  border-color: rgb(var(--primary));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-600 {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.\!bg-surface-container-high {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1)) !important;
}
.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-background {
  background-color: rgb(var(--background));
}
.bg-background\/90 {
  background-color: rgb(var(--background) / 0.9);
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-black\/95 {
  background-color: rgb(0 0 0 / 0.95);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-error {
  background-color: rgb(var(--error));
}
.bg-foreground {
  background-color: rgb(var(--foreground));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-input {
  background-color: rgb(var(--input));
}
.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-outline-variant {
  background-color: rgb(var(--outline-variant));
}
.bg-primary {
  background-color: rgb(var(--primary));
}
.bg-primary\/20 {
  background-color: rgb(var(--primary) / 0.2);
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-sidebar {
  background-color: rgb(var(--sidebar));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-success {
  background-color: rgb(var(--success));
}
.bg-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface) / var(--tw-bg-opacity, 1));
}
.bg-surface-container {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container) / var(--tw-bg-opacity, 1));
}
.bg-surface-container-high {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1));
}
.bg-surface-container-high\/60 {
  background-color: rgb(var(--surface-container-high) / 0.6);
}
.bg-surface-container-low {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container-low) / var(--tw-bg-opacity, 1));
}
.bg-surface-container-low\/95 {
  background-color: rgb(var(--surface-container-low) / 0.95);
}
.bg-surface-container\/60 {
  background-color: rgb(var(--surface-container) / 0.6);
}
.bg-surface-container\/80 {
  background-color: rgb(var(--surface-container) / 0.8);
}
.bg-surface\/50 {
  background-color: rgb(var(--surface) / 0.5);
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/100 {
  background-color: rgb(255 255 255 / 1);
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}
.bg-zinc-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.object-cover {
  object-fit: cover;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[2px\] {
  padding: 2px;
}
.p-\[8px\] {
  padding: 8px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-7 {
  padding-bottom: 1.75rem;
}
.pl-0\.5 {
  padding-left: 0.125rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pr-0\.5 {
  padding-right: 0.125rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-\[var\(--theme-accent-readable\2c \#3b82f6\)\] {
  color: var(--theme-accent-readable,#3b82f6);
}
.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-background {
  color: rgb(var(--background));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-error {
  color: rgb(var(--error));
}
.text-foreground {
  color: rgb(var(--foreground));
}
.text-foreground-on-surface {
  --tw-text-opacity: 1;
  color: rgb(var(--on-surface) / var(--tw-text-opacity, 1));
}
.text-foreground-on-surface-variant {
  --tw-text-opacity: 1;
  color: rgb(var(--on-surface-variant) / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-muted-foreground {
  color: rgb(var(--muted-foreground));
}
.text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-primary {
  color: rgb(var(--primary));
}
.text-primary-foreground {
  color: rgb(var(--primary-foreground));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-secondary {
  color: rgb(var(--secondary));
}
.text-secondary-fg {
  color: rgb(var(--secondary-fg));
}
.text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-zinc-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.text-zinc-900 {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.decoration-dashed {
  text-decoration-style: dashed;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* Base page styles for premium and other pages */
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-background-clip: padding-box;
    -webkit-text-fill-color: rgb(var(--foreground)) !important;
    background-color: rgb(var(--input)) !important;
    box-shadow: 0 0 0px 1000px rgb(var(--input)) inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
  }
.dark input:-webkit-autofill,
  .dark input:-webkit-autofill:hover,
  .dark input:-webkit-autofill:focus,
  .dark input:-webkit-autofill:active {
    -webkit-text-fill-color: rgb(var(--foreground)) !important;
    background-color: rgb(var(--input)) !important;
    box-shadow: 0 0 0px 1000px rgb(var(--input)) inset !important;
  }
/* Product Card Styles - Consistent with pro-combined.js */
/* Outlined button variant - used for lite and ultra plans */
/* Utility spacing helpers */
/* Billing toggle small helper */
/* Tab indicator (simple visible pill when active) */
.tab-indicator {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgb(var(--primary));
  opacity: 0.00;
  z-index: 0;
}
.active-tab .tab-indicator { 
  opacity: 0.18; 
}
/* Accessibility focus */
button:focus-visible, a:focus-visible { 
  outline: 2px solid transparent; 
  box-shadow: 0 0 0 3px color-mix(in srgb, rgb(var(--ring)) 12%, transparent); 
}
/* Make images responsive */
img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}
html {
  overflow-y: hidden;
  -webkit-tap-highlight-color: transparent;
}
.satlist a,
  .satlist a:active,
  .satlist a:hover,
  .satlist a:visited {
    color: white;
  }
/* TomSelect base styles */
.ts-control,
  .ts-control input,
  .ts-dropdown {
    font-family: inherit;
    font-size: 1rem; /* text-base in Tailwind  */
  }
/* Tom Select dark mode styles */
.dark .ts-dropdown {
  --tw-bg-opacity: 1;
  background-color: rgb(31 31 34 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
    color: #e5e7eb;
}
/* Ensure Tom Select dropdown is above overlays */
.ts-dropdown, .tom-select-dropdown {
  z-index: 20 !important;
}
.dark .ts-dropdown .create,
  .dark .ts-dropdown .option {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

  .dark .ts-dropdown .\!option {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.dark .ts-dropdown .create:hover,
  .dark .ts-dropdown .option:hover,
  .dark .ts-dropdown .active {
  background-color: rgba(159,159,160,0.2);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

  .dark .ts-dropdown .\!option:hover {
  background-color: rgba(159,159,160,0.2);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.dark .ts-dropdown .create {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.dark .ts-control {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.dark .ts-control > input {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
    color: #e5e7eb;
}
.dark .ts-wrapper.input-active {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.dark .ts-dropdown .optgroup-header {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
/* Remove white background override for TomSelect input in dark mode */
.dark input[type="text"].ts-input {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.btn-clear {
  background: transparent !important;
  box-shadow: none !important;
}

.dp-spinner {
  display: inline-block;
  box-sizing: border-box;
  border-style: solid;
  border-radius: 9999px;
  border-color: rgb(229 231 235);
  border-top-color: #c80000;
  animation: dp-spinner-spin 0.8s linear infinite;
}

.dark .dp-spinner {
  border-color: rgb(55 65 81);
  border-top-color: #c80000;
}

.dp-spinner--delayed {
  opacity: 0;
  animation:
    dp-spinner-spin 0.8s linear infinite,
    dp-spinner-fade-in 180ms ease-out 500ms forwards;
}

.dp-spinner--sm {
  width: 1.25rem;
  height: 1.25rem;
  border-width: 2px;
  vertical-align: middle;
}

.dp-spinner--md {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 4px;
}

.dp-spinner--lg {
  width: 3rem;
  height: 3rem;
  border-width: 4px;
}

.dp-spinner--xl {
  width: 4rem;
  height: 4rem;
  border-width: 4px;
}

@keyframes dp-spinner-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes dp-spinner-fade-in {
  to {
    opacity: 1;
  }
}

#appShell {
  --sidebar-expanded: 325px;
  --sidebar-collapsed: 72px;
  grid-template-columns: var(--sidebar-expanded) minmax(0, 100vw);
  overflow: hidden;
  transition: grid-template-columns 240ms ease;
  position: relative;
}

#appShell[data-sidebar-collapsed="true"] {
  grid-template-columns: var(--sidebar-collapsed) minmax(0, 1fr);
}

#appShell[data-sidebar-collapsed="false"] {
  grid-template-columns: var(--sidebar-expanded) minmax(0, 100vw);
}

#appShell[data-sidebar-collapsed="true"] #mobileControlsSheet {
  opacity: 0;
  pointer-events: none;
}

#appShell[data-sidebar-collapsed="true"] footer {
  opacity: 1;
  pointer-events: auto;
}

#appShell[data-sidebar-collapsed="true"] #mobileControlsSheet {
  display: none;
}

#appShell[data-sidebar-collapsed="true"] #collapsedControlsRail {
  display: block;
}

#appShell[data-sidebar-collapsed="true"] nav > div {
  flex-direction: column-reverse;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#appShell[data-sidebar-collapsed="true"] nav a,
#appShell[data-sidebar-collapsed="true"] nav a > div,
#appShell[data-sidebar-collapsed="true"] nav > div > div {
  justify-content: center;
  width: 100%;
}

#appShell[data-sidebar-collapsed="true"] nav svg[aria-label="DishPointer logo"] {
  margin-right: 0;
}

#appShell[data-sidebar-collapsed="true"] #sidebarCollapseBtn {
  position: fixed;
  top: 10px;
  left: calc(var(--sidebar-collapsed) + 0.5rem);
  z-index: 60;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  border: 1px solid rgb(var(--outline-variant));
  border-radius: 9999px;
  background: rgb(var(--surface-container));
  color: rgb(var(--foreground));
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.12);
}

#appShell[data-sidebar-collapsed="true"] nav .logo-png,
#appShell[data-sidebar-collapsed="true"] nav span {
  display: none;
}

#appShell[data-sidebar-collapsed="true"] #sidebarCollapseBtn svg {
  transform: rotate(180deg);
}

#providerTabsContainer {
  transition: left 240ms ease, max-width 240ms ease;
}

#appShell[data-sidebar-collapsed="true"] #providerTabsContainer {
  left: 4rem;
  max-width: calc(100% - 10rem);
}

#mobileControlsSheet,
footer {
  transition: opacity 160ms ease;
}

@media (min-width: 640px) {
  #appShell {
    --sidebar-expanded: 390px;
    grid-template-columns: var(--sidebar-expanded) minmax(0, 1fr);
  }

  #appShell[data-sidebar-collapsed="false"] {
    grid-template-columns: var(--sidebar-expanded) minmax(0, 1fr);
  }
}

@media (max-width: 639px) {
  #appShell {
    --sidebar-expanded: min(325px, calc(100vw - 1rem));
    grid-template-columns: var(--sidebar-collapsed) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto 50px;
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
  }

  #appShell:not([data-sidebar-collapsed="false"]) {
    grid-template-columns: var(--sidebar-collapsed) minmax(0, 1fr);
  }

  #appShell[data-sidebar-collapsed="false"] {
    grid-template-columns: var(--sidebar-expanded) minmax(0, 1fr);
  }

  #mapPaneWrapper {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
    z-index: 0;
  }

  #appShell > nav,
  #mobileControlsSheet,
  #collapsedControlsRail,
  #appShell > footer {
    position: relative;
    z-index: 40;
    width: 100%;
  }

  #mobileControlsSheet,
  #collapsedControlsRail {
    min-width: 0;
  }

  #appShell:not([data-sidebar-collapsed="false"]) > nav,
  #appShell:not([data-sidebar-collapsed="false"]) #collapsedControlsRail,
  #appShell:not([data-sidebar-collapsed="false"]) > footer {
    border-color: rgb(var(--outline-variant) / 0.35);
    background: rgb(var(--background) / 0.1);
  }

  #appShell:not([data-sidebar-collapsed="false"]) #mobileControlsSheet {
    opacity: 0;
    pointer-events: none;
  }

  #appShell:not([data-sidebar-collapsed="false"]) footer {
    opacity: 1;
    pointer-events: auto;
  }

  #appShell:not([data-sidebar-collapsed="false"]) #mobileControlsSheet {
    display: none;
  }

  #appShell:not([data-sidebar-collapsed="false"]) #collapsedControlsRail {
    display: block;
  }

  #appShell:not([data-sidebar-collapsed="false"]) nav > div {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #appShell:not([data-sidebar-collapsed="false"]) nav a,
  #appShell:not([data-sidebar-collapsed="false"]) nav a > div,
  #appShell:not([data-sidebar-collapsed="false"]) nav > div > div {
    justify-content: center;
    width: 100%;
  }

  #appShell:not([data-sidebar-collapsed="false"]) nav svg[aria-label="DishPointer logo"] {
    margin-right: 0;
  }

  #appShell:not([data-sidebar-collapsed="false"]) #sidebarCollapseBtn {
    position: fixed;
    top: 10px;
    left: calc(var(--sidebar-collapsed) + 0.5rem);
    z-index: 60;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    border: 1px solid rgb(var(--outline-variant));
    border-radius: 9999px;
    background: rgb(var(--surface-container) / 0.92);
    color: rgb(var(--foreground));
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.12);
  }

  #appShell:not([data-sidebar-collapsed="false"]) nav .logo-png,
  #appShell:not([data-sidebar-collapsed="false"]) nav span {
    display: none;
  }

  #appShell:not([data-sidebar-collapsed="false"]) #sidebarCollapseBtn svg {
    transform: rotate(180deg);
  }

  #appShell:not([data-sidebar-collapsed="false"]) #providerTabsContainer {
    left: 8rem;
    max-width: calc(100% - 9rem);
  }

  #appShell[data-sidebar-collapsed="false"] #providerTabsContainer {
    left: 1rem;
    max-width: calc(100% - 160px);
  }
}

#locationResults > div {
  min-width: 0;
}

#locationResults > div:last-child {
  justify-content: flex-end;
  text-align: right;
}

#mobileControlsSheet {
  overflow-x: hidden;
}

#collapsedControlsRail {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#collapsedControlsRail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (max-width: 639px) {
  #appShell:not([data-sidebar-collapsed="false"]) #collapsedControlsRail[data-scroll-fade] {
    --sidebar-scroll-fade: 12px;
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 0,
      black calc(100% - var(--sidebar-scroll-fade)),
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      black 0,
      black calc(100% - var(--sidebar-scroll-fade)),
      transparent 100%
    );
  }
}

#tleInfoBox,
#tleResults {
  overflow-x: visible;
}


#tleResults {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
}

#tleResults,
#tleResults * {
  max-width: 100%;
  min-width: 0;
}

#tleResults .tooltip-wrapper .tooltip-delay {
  width: 160px;
  min-width: 160px;
  max-width: none;
}

.collapsed-rail-card {
  width: 3.25rem;
  height: 3.5rem;
  min-height: 3.5rem;
  border: 1px solid rgb(var(--outline-variant));
  border-radius: 0.5rem;
  background: rgb(var(--surface-container));
  color: rgb(var(--foreground));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.25rem;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.collapsed-rail-card:hover,
.collapsed-rail-card:focus-visible {
  background: rgb(var(--surface-container-high));
  border-color: rgb(var(--outline));
  outline: none;
}

.collapsed-rail-value {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.625rem;
  line-height: 0.75rem;
  font-weight: 700;
}

.collapsed-rail-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.5rem;
  line-height: 0.625rem;
  color: rgb(var(--muted-foreground));
}

.collapsed-rail-metric {
  min-height: 3.25rem;
}

.collapsed-rail-action {
  color: rgb(var(--foreground));
}

.collapsed-rail-value.text-secondary {
  color: rgb(var(--secondary));
}

.collapsed-rail-value.text-error {
  color: rgb(var(--error));
}

.collapsed-rail-value.text-foreground {
  color: rgb(var(--foreground));
}

.collapsed-rail-action[aria-disabled="true"],
.collapsed-rail-action:disabled {
  cursor: default;
  opacity: 0.45;
}

#appShell[data-sidebar-collapsed="true"] footer {
  display: flex;
  justify-content: center;
  border-right-width: 1px;
  padding: 0.5rem;
}

#appShell[data-sidebar-collapsed="true"] footer > div {
  display: flex;
  justify-content: center;
  width: 100%;
}

#appShell[data-sidebar-collapsed="true"] #account-menu-btn {
  margin: 0 auto;
}

@media (max-width: 639px) {
  #appShell:not([data-sidebar-collapsed="false"]) footer {
    display: flex;
    justify-content: center;
    border-right-width: 1px;
    padding: 0.5rem;
  }

  #appShell:not([data-sidebar-collapsed="false"]) footer > div {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #appShell:not([data-sidebar-collapsed="false"]) #account-menu-btn {
    margin: 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgb(var(--outline-variant));
    border-radius: 9999px;
    background: rgb(var(--surface-container));
    color: rgb(var(--foreground));
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
  }

  #appShell:not([data-sidebar-collapsed="false"]) #account-menu-btn svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}


:root {
  /* Border radius */
  --radius: 0.65rem;
  
  /* Enhanced color system converted to RGB for Tailwind v3 compatibility */
  --background: 249 250 251;          /* oklch(1 0 0) -> white */
  --foreground: 10 10 12;               /* oklch(0.141 0.005 285.823) -> zinc-900 */
  --card: 255 255 255;                /* oklch(1 0 0) -> white */
  --card-foreground: 10 10 12;          /* oklch(0.141 0.005 285.823) -> zinc-900 */
  --popover: 255 255 255;             /* oklch(1 0 0) -> white */
  --popover-foreground: 10 10 12;       /* oklch(0.141 0.005 285.823) -> zinc-900 */
  --primary: 200 0 0;               /* oklch(0.645 0.246 16.439) -> red-500 */
  --primary-foreground: 255 255 255;  /* oklch(0.969 0.015 12.422) -> white */
  --secondary: 20 184 166;           /* CHANGED oklch(0.967 0.001 286.375) -> zinc-100 */
  --secondary-foreground: 39 39 42;   /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --tertiary: 54 120 214;             /* oklch(0.828 0.189 84.429) -> yellow-400 */
  --muted: 140 145 145;               /* CHANGED! oklch(0.967 0.001 286.375) -> zinc-100 */
  --muted-foreground: 113 113 122;    /* oklch(0.552 0.016 285.938) -> zinc-500 */
  --accent: 244 244 245;              /* oklch(0.967 0.001 286.375) -> zinc-100 */
  --accent-foreground: 39 39 42;      /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --destructive: 255 31 86;           /* oklch(0.577 0.245 27.325) -> red-500 */
  --destructive-foreground: 248 250 252; /* white */
  --border: 228 228 231;              /* oklch(0.92 0.004 286.32) -> zinc-200 */
  --input: 255 255 255;               
  --ring: 255 31 86;                  /* oklch(0.645 0.246 16.439) -> red-500 */
  --chart-1: 34 197 94;               /* oklch(0.646 0.222 41.116) -> emerald-500 */
  --chart-2: 59 130 246;              /* oklch(0.6 0.118 184.704) -> blue-500 */
  --chart-3: 147 51 234;              /* oklch(0.398 0.07 227.392) -> purple-600 */
  --chart-4: 250 204 21;              /* oklch(0.828 0.189 84.429) -> yellow-400 */
  --chart-5: 245 101 101;             /* oklch(0.769 0.188 70.08) -> red-400 */
  --sidebar: 242 243 244;             /* oklch(0.985 0 0) -> zinc-50 */
  --sidebar-foreground: 10 10 12;       /* oklch(0.141 0.005 285.823) -> zinc-900 */
  --sidebar-primary: 255 31 86;       /* oklch(0.645 0.246 16.439) -> red-500 */
  --sidebar-primary-foreground: 255 255 255; /* oklch(0.969 0.015 12.422) -> white */
  --sidebar-accent: 244 244 245;      /* oklch(0.967 0.001 286.375) -> zinc-100 */
  --sidebar-accent-foreground: 39 39 42; /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --sidebar-border: 228 228 231;      /* oklch(0.92 0.004 286.32) -> zinc-200 */
  --sidebar-ring: 255 31 86;          /* oklch(0.645 0.246 16.439) -> red-500 */

  /* Spacing system */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Legacy color system for backwards compatibility */
  --primary-rgb: 200 0 0;        /* dp-red */
  --secondary-rgb: 20 184 166;     /* teal-500 - Electric Blue */
  --background-rgb: 249 250 251;   /* gray-50 - Snow White */
  --foreground-rgb: 17 24 39;      /* gray-900 - Charcoal */
  --secondary-fg: 75 85 99;    /* gray-600 - Cool Gray */
  --outline: 107 114 128;      /* gray-500 - Cool Gray */
  --outline-variant: 190 190 190; /* gray-300 - Cool Gray */
  --muted-rgb: 159 159 169;        /* gray-400 - Cool Gray */
  --success: 16 185 129;       /* emerald-500 - Emerald */
  --warning: 245 158 11;       /* amber-500 - Amber */
  --error: 255 31 86;          /* red-600 - Scarlet */

  /* M3 Surface System - Light Mode */
  --surface-dim: 228 228 231;           /* zinc-200 */
  --surface: 255 255 255;               /* white */
  --surface-bright: 255 255 255;        /* white */
  --surface-container-lowest: 255 255 255; /* white */
  --surface-container-low: 249 250 251;    /* zinc-50 */
  --surface-container: 244 244 245;        /* zinc-100 */
  --surface-container-high: 236 237 239;   /* zinc-100/200 */
  --surface-container-highest: 228 228 231; /* zinc-200 */

  /* M3 Foreground System - Light Mode */
  --on-surface: 24 24 27;               /* zinc-900 */
  --on-surface-variant: 82 82 91;       /* zinc-600 */
  --outline: 113 113 122;               /* zinc-500 */
  --outline-variant: 212 212 216;       /* zinc-300 */

  /* Legacy Surface Mapping (Updated for lightness) */
  --surface-1: 249 250 251; /* zinc-50 */
  --surface-2: 244 244 245; /* zinc-100 */

  --ghost: 115 115 115 / 9%;
}

.dark {
  --background: 13 13 16;               /* oklch(0.141 0.005 285.823) -> zinc-900 */
  --foreground: 250 250 250;          /* oklch(0.985 0 0) -> zinc-50 */
  --card: 39 39 42;                   /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --card-foreground: 250 250 250;     /* oklch(0.985 0 0) -> zinc-50 */
  --popover: 39 39 42;                /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --popover-foreground: 250 250 250;  /* oklch(0.985 0 0) -> zinc-50 */
  --primary: 250 44 55;               /* oklch(0.645 0.246 16.439) -> red-500 */
  --primary-foreground: 255 255 255;  /* oklch(0.969 0.015 12.422) -> white */
  --secondary: 0 187 167;              /* CHANGED oklch(0.274 0.006 286.033) -> zinc-700 */
  --secondary-foreground: 250 250 250; /* oklch(0.985 0 0) -> zinc-50 */
  --tertiary: 37 100 235;             /* oklch(0.828 0.189 84.429) -> yellow-400 */
  --muted: 159 159 169;                  /* oklch(0.274 0.006 286.033) -> zinc-700 */
  --muted-foreground: 161 161 170;    /* oklch(0.705 0.015 286.067) -> zinc-400 */
  --accent: 63 63 70;                 /* oklch(0.274 0.006 286.033) -> zinc-700 */
  --accent-foreground: 250 250 250;   /* oklch(0.985 0 0) -> zinc-50 */
  --destructive: 220 38 38;           /* oklch(0.704 0.191 22.216) -> red-600 */
  --destructive-foreground: 250 250 250; /* zinc-50 */
  --border: 34 34 35;                 /* oklch(1 0 0 / 10%) -> zinc-800 */                  
  --ring: 255 31 86;                  /* oklch(0.645 0.246 16.439) -> red-500 */
  --chart-1: 147 51 234;              /* oklch(0.488 0.243 264.376) -> purple-600 */
  --chart-2: 34 197 94;               /* oklch(0.696 0.17 162.48) -> emerald-500 */
  --chart-3: 250 204 21;              /* oklch(0.769 0.188 70.08) -> yellow-400 */
  --chart-4: 168 85 247;              /* oklch(0.627 0.265 303.9) -> purple-500 */
  --chart-5: 255 31 86;               /* oklch(0.645 0.246 16.439) -> red-500 */
  --sidebar: 0 0 0;                /* oklch(0.21 0.006 285.885) -> zinc-800 */
  --sidebar-foreground: 250 250 250;  /* oklch(0.985 0 0) -> zinc-50 */
  --sidebar-primary: 255 31 86;       /* oklch(0.645 0.246 16.439) -> red-500 */
  --sidebar-primary-foreground: 255 255 255; /* oklch(0.969 0.015 12.422) -> white */
  --sidebar-accent: 63 63 70;         /* oklch(0.274 0.006 286.033) -> zinc-700 */
  --sidebar-accent-foreground: 250 250 250; /* oklch(0.985 0 0) -> zinc-50 */
  --sidebar-border: 39 39 42;         /* oklch(1 0 0 / 10%) -> zinc-800 */
  --sidebar-ring: 255 31 86;          /* oklch(0.645 0.246 16.439) -> red-500 */

  /* Legacy dark mode colors */
  --primary-rgb: 255 102 102; 
  --secondary-rgb: 45 212 191;     /* teal-400 - Cyan Blue */
  --background-rgb: 9 9 11;        /* gray-950 - Almost Black */
  --foreground-rgb: 242 243 245;   /* gray-100 - Light Gray */
  --secondary-fg: 185 185 192; /* gray-400 - Muted Gray */
  --outline-variant: 55 55 57;      /* gray-500 - Cool Gray */
  --outline: 85 85 88; /* gray-700 - Cool Gray */
  --muted-rgb: 159 159 169;        /* gray-400 - Cool Gray */
  --success: 52 211 153;       /* emerald-400 - Soft Green */
  --warning: 251 191 36;       /* amber-400 - Golden Yellow */
  --error: 255 31 86;        /* red-400 - Bright Red */

  /* M3 Surface System - Dark Mode */
  --surface-dim: 9 9 11;                /* zinc-950 */
  --surface: 9 9 11;                    /* zinc-950 */
  --surface-bright: 58 58 62;           /* zinc-700 */
  --surface-container-lowest: 9 9 11;   /* zinc-950 */
  --surface-container-low: 24 24 27;    /* zinc-900 */
  --surface-container: 39 39 42;        /* zinc-800 */
  --surface-container-high: 63 63 70;   /* zinc-700 */
  --surface-container-highest: 82 82 91; /* zinc-600 */

  /* M3 Foreground System - Dark Mode */
  --on-surface: 250 250 250;            /* zinc-50 */
  --on-surface-variant: 161 161 170;    /* zinc-400 */
  --outline: 147 147 154;               /* zinc-400/500 */
  --outline-variant: 63 63 70;          /* zinc-700 */

  /* Legacy Surface Mapping */
  --surface-1: 24 24 27; /* zinc-900 */
  --surface-2: 39 39 42; /* zinc-800 */

  --ghost: 185 185 192 / 13%;


  --input: 40 41 45; 
}

/* Add this to your styles.css or Tailwind configuration */
@keyframes value-change {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); filter: brightness(1.2); }
  100% { transform: scale(1); }
}

.value-animation {
  animation: value-change 0.5s ease-out;
}

.value-container .degree-symbol {
  visibility: hidden;
}

.value-container:has(> span:first-child:not(:empty)) .degree-symbol {
  visibility: visible;
}

/* For users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .value-animation {
    animation: none;
    filter: brightness(1.2);
    transition: filter 0.3s;
  }
   .loading-indicator {
    animation: none;
    border: 2px dotted rgba(0, 213, 190, 0.7);

  }
}

/* Add to your stylesheet */
.loading-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0, 213, 190, 0.3);
  border-top-color: #00d5be;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.logo-png {
  width: 111px;
  height: 16px;
  background: url(../assets/dishpointer.aa2ffd1aba061ac9536a.png) center/contain no-repeat;
  filter: brightness(0) invert(var(--logo-invert, 0));
}

.dark .logo-png {
  --logo-invert: 1;
}

#theme-toggle:focus,
button.btn-clear:focus {
  outline: none !important;
  box-shadow: none !important;
}

.mapIMG {
  filter: opacity(0.15) ;
  
}

.dark .mapIMG {
   filter: opacity(1.0) ;
}

/* Standard für kleine Screens (Handy) */
.fancy-bg {
  background: radial-gradient(
      ellipse 135% 230% at 50% 0%,
      rgba(16, 63, 151, 0.642),
      transparent 40%
    ),
    rgb(243, 244, 246); /* Light */
}

.dark .fancy-bg {
  background: radial-gradient(
      ellipse 135% 230% at 50% 0%,
      rgba(16, 63, 151, 0.642),
      transparent 50%
    ),
    rgb(0, 0, 0); /* Dark */
}

/* Ab "sm" Screens (Tablet+) */
@media (min-width: 640px) {
  .fancy-bg {
    background: radial-gradient(
        ellipse 85% 290% at 50% 0%,
        rgba(16, 63, 151, 0.642),
        transparent 48%
      ),
      rgb(243, 244, 246); /* Light */
  }

  .dark .fancy-bg {
    background: radial-gradient(
        ellipse 85% 290% at 50% 0%,
        rgba(16, 63, 151, 0.642),
        transparent 48%
      ),
      rgb(0, 0, 0); /* Dark */
  }
}

#feedback-popup.open {
  transform: translateY(0);
}

/* Standard padding without safe-area logic */
#feedback-popup {
  padding-bottom: 1rem;
}


/* Tooltip erscheint erst nach 300ms Hover */
.tooltip-wrapper:hover .tooltip-delay {
  animation: showTooltip 0.2s ease-out forwards;
  animation-delay: 0.0s;
}

/* Also show tooltip on tap/focus (mobile + keyboard) */
.tooltip-wrapper:focus-within .tooltip-delay {
  animation: showTooltip 0.2s ease-out forwards;
  animation-delay: 0.0s;
}

@keyframes showTooltip {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.95) translateY(0);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(-0.25rem);
  }
}

select.preinit-hidden {
  display: none !important;
  visibility: hidden !important;
  /* Keeps layout stable when TomSelect injects its control */
}


@keyframes slide-up-fade {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-slide-up-fade {
  animation: slide-up-fade 0.3s ease-out;
}


@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 0.5s ease-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.2s ease-out forwards;
}

/* ========================================
   Satellite Favorites Plugin Styles
   ======================================== */

/* Container for each option in the dropdown */
.satellite-option-container {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem !important;
  width: 100%;
}

/* Label wrapper inside options */
.satellite-option-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Star button for favorites */
.satellite-star-btn {
  flex-shrink: 0;
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.15s ease;
  color: rgb(var(--muted));
  opacity: 1;
  transform: none;
}

.satellite-star-btn:hover {
  color: rgb(var(--warning));
}

.satellite-star-btn.is-favorite {
  color: rgb(var(--warning));
  opacity: 1;
}

.satellite-star-btn .favorite-star {
  width: 16px;
  height: 16px;
}

/* Default satellite indicator */
.satellite-default-indicator {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgb(var(--success));
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
}

/* Default button container in control area */
.satellite-default-btn-container {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 5;
}

.satellite-default-btn {
  padding: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
  color: rgb(var(--muted));
}

.satellite-default-btn:hover {
  background: rgb(var(--surface));
  color: rgb(var(--primary));
}

/* Confirmation modal overlay */
.satellite-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.satellite-confirm-modal {
  background: rgb(var(--background));
  border: 1px solid rgb(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 24rem;
  width: 100%;
  animation: modal-appear 0.2s ease-out;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.satellite-confirm-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(var(--border));
}

.satellite-confirm-header svg {
  color: rgb(var(--primary));
}

.satellite-confirm-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(var(--foreground));
  margin: 0;
}

.satellite-confirm-body {
  padding: 1.25rem;
}

.satellite-confirm-body p {
  margin: 0 0 0.5rem 0;
  color: rgb(var(--foreground));
}

.satellite-confirm-body strong {
  color: rgb(var(--primary));
}

.satellite-confirm-hint {
  font-size: 0.875rem;
  color: rgb(var(--secondary-fg)) !important;
}

.satellite-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgb(var(--border));
}

.satellite-confirm-cancel {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--foreground));
  background: transparent;
  border: 1px solid rgb(var(--border));
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.satellite-confirm-cancel:hover {
  background: rgb(var(--surface));
}

.satellite-confirm-save {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--primary-foreground));
  background: rgb(var(--primary));
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.satellite-confirm-save:hover {
  opacity: 0.9;
}

/* TomSelect control adjustments for the default button */
.ts-wrapper .ts-control {
  padding-right: 4rem !important;
}

/* Adjust dropdown option styling */
.ts-dropdown .option.satellite-option-container:hover .satellite-star-btn,
.ts-dropdown .option.satellite-option-container.active .satellite-star-btn {
  opacity: 1;
}
/* ==========================================
   Satellite Controls Plugin Styles
   Buttons inside TomSelect dropdown input area
   ========================================== */

/* Container for controls inside dropdown-input-wrap - LEFT aligned */
.satellite-controls-dropdown {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 5;
  /* Order: star (favorites) first, then visibility */
  flex-direction: row;
}

/* Style the dropdown-input-wrap to position controls */
.dropdown-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Make room for the control buttons on the LEFT */
.dropdown-input-wrap .dropdown-input {
  padding-left: 4.5rem !important;
  padding-right: 0.75rem !important;
}

.satellite-ctrl-btn {
  padding: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
  color: rgb(var(--secondary-foreground));
  opacity: 0.7;
}

.satellite-ctrl-btn:hover {
  background: rgb(var(--surface));
  color: rgb(var(--foreground));
  opacity: 1;
}

.satellite-ctrl-btn:disabled,
.satellite-ctrl-btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.satellite-ctrl-btn:disabled:hover,
.satellite-ctrl-btn.is-disabled:hover {
  background: transparent;
  color: rgb(var(--secondary-foreground));
  opacity: 0.35;
}


.satellite-ctrl-btn.is-active {
  opacity: 1;
}
/*
.satellite-ctrl-btn.is-active:hover {
  color: rgb(var(--primary));
  background: rgb(var(--primary) / 0.1);
}
*/
/* Visibility button specific styles */
.satellite-visibility-ctrl.is-active {
  color: #f59e0b; /* Amber/gold for visibility */
}

/* Favorites button specific styles */
.satellite-favorites-ctrl.is-active {
  color: #f59e0b; /* Amber/gold for favorites */
}

/* Legacy control area styles (keeping for backward compatibility) */
.satellite-controls-container {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 5;
}

.satellite-control-btn {
  padding: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
  color: rgb(var(--secondary-foreground));
  opacity: 0.7;
}

.satellite-control-btn:hover {
  background: rgb(var(--surface));
  color: rgb(var(--foreground));
  opacity: 1;
}

.satellite-control-btn.is-active {
  color: rgb(var(--primary));
  opacity: 1;
}

/* Adjust padding when controls are present */
.ts-wrapper.has-satellite-controls .ts-control {
  padding-right: 6rem !important;
}

/* ==========================================
   Saved Locations Dropdown Styles
   ========================================== */

#savedLocationsDropdownContainer {
  position: relative;
}

#savedLocationsDropdownBtn {
  position: relative;
}

/* Dropdown is now outside the overflow-hidden container, positioned relative to the form */
#satcalc {
  position: relative;
}

#savedLocationsDropdown {
  animation: dropdown-appear 0.15s ease-out;
}

@keyframes dropdown-appear {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.saved-location-dropdown-item:focus {
  outline: none;
  background: rgb(var(--surface-container));
}

.saved-location-dropdown-item:focus-visible {
  ring: 2px;
  ring-color: rgb(var(--primary));
}

/* GoogleMaps styles */
.gm-style .gm-style-iw-d::-webkit-scrollbar-track, 
.gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece,
.gm-style .gm-style-iw-c, 
.gm-style .gm-style-iw-t::after { 
  color: rgb(17, 24, 39) !important;

}

.gm-ui-hover-effect span {
  background: rgb(17, 24, 39) !important;
}

.gm-ui-hover-effect:hover span {
  background: rgb(0, 0, 0) !important;
}

#googleMapContainer .gm-style button,
#googleMapContainer .gm-style [role="button"],
#googleMapContainer .gm-style [tabindex] {
  -webkit-tap-highlight-color: transparent;
}

#googleMapContainer .gm-style button:focus,
#googleMapContainer .gm-style button:focus-visible,
#googleMapContainer .gm-style [role="button"]:focus,
#googleMapContainer .gm-style [role="button"]:focus-visible,
#googleMapContainer .gm-style [tabindex]:focus,
#googleMapContainer .gm-style [tabindex]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.placeholder\:text-muted::placeholder {
  color: rgb(var(--muted));
}

.placeholder\:text-secondary-fg::placeholder {
  color: rgb(var(--secondary-fg));
}

.focus-within\:border-transparent:focus-within {
  border-color: transparent;
}

.focus-within\:ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-primary:focus-within {
  --tw-ring-color: rgb(var(--primary));
}

.hover\:bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-ghost:hover {
  background-color: rgb(var(--ghost));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-orange-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary:hover {
  background-color: rgb(var(--primary));
}

.hover\:bg-primary\/90:hover {
  background-color: rgb(var(--primary) / 0.9);
}

.hover\:bg-red-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:bg-surface:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface) / var(--tw-bg-opacity, 1));
}

.hover\:bg-surface-container:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container) / var(--tw-bg-opacity, 1));
}

.hover\:bg-surface-container-high:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1));
}

.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.hover\:text-error:hover {
  color: rgb(var(--error));
}

.hover\:text-foreground:hover {
  color: rgb(var(--foreground));
}

.hover\:text-foreground\/85:hover {
  color: rgb(var(--foreground) / 0.85);
}

.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.hover\:text-primary:hover {
  color: rgb(var(--primary));
}

.hover\:text-primary\/80:hover {
  color: rgb(var(--primary) / 0.8);
}

.hover\:text-red-800:hover {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

.focus\:border-red-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-primary:focus {
  --tw-ring-color: rgb(var(--primary));
}

.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-primary:focus-visible {
  --tw-ring-color: rgb(var(--primary));
}

.group:focus-within .group-focus-within\:block {
  display: block;
}

.group:focus-within .group-focus-within\:hidden {
  display: none;
}

.group:hover .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:hidden {
  display: none;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.peer:checked ~ .peer-checked\:bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.peer:checked ~ .peer-checked\:bg-surface-container-high {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1));
}

.peer:checked ~ .peer-checked\:text-foreground {
  color: rgb(var(--foreground));
}

.peer:checked ~ .peer-checked\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.peer:hover ~ .peer-hover\:bg-surface-container-high {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface-container-high) / var(--tw-bg-opacity, 1));
}

.peer:hover ~ .peer-hover\:text-foreground {
  color: rgb(var(--foreground));
}

.peer:hover ~ .peer-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.aria-selected\:bg-foreground[aria-selected="true"] {
  background-color: rgb(var(--foreground));
}

.aria-selected\:text-background[aria-selected="true"] {
  color: rgb(var(--background));
}

.dark\:block:is(.dark *) {
  display: block;
}

.dark\:inline:is(.dark *) {
  display: inline;
}

.dark\:hidden:is(.dark *) {
  display: none;
}

.dark\:divide-gray-800\/50:is(.dark *) > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(31 41 55 / 0.5);
}

.dark\:border-gray-600:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}

.dark\:border-gray-700:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}

.dark\:border-gray-800\/80:is(.dark *) {
  border-color: rgb(31 41 55 / 0.8);
}

.dark\:border-red-500:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.dark\:border-slate-600:is(.dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}

.dark\:bg-amber-900\/30:is(.dark *) {
  background-color: rgb(120 53 15 / 0.3);
}

.dark\:bg-gray-600:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.dark\:bg-gray-700:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

.dark\:bg-gray-800:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.dark\:bg-gray-900:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

.dark\:bg-gray-900\/100:is(.dark *) {
  background-color: rgb(17 24 39 / 1);
}

.dark\:bg-gray-900\/95:is(.dark *) {
  background-color: rgb(17 24 39 / 0.95);
}

.dark\:bg-green-900\/30:is(.dark *) {
  background-color: rgb(20 83 45 / 0.3);
}

.dark\:bg-orange-900\/20:is(.dark *) {
  background-color: rgb(124 45 18 / 0.2);
}

.dark\:bg-red-900\/20:is(.dark *) {
  background-color: rgb(127 29 29 / 0.2);
}

.dark\:bg-red-900\/30:is(.dark *) {
  background-color: rgb(127 29 29 / 0.3);
}

.dark\:bg-slate-700:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}

.dark\:bg-surface:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--surface) / var(--tw-bg-opacity, 1));
}

.dark\:bg-surface-1:is(.dark *) {
  background-color: rgb(var(--surface-1));
}

.dark\:bg-surface-container-high\/95:is(.dark *) {
  background-color: rgb(var(--surface-container-high) / 0.95);
}

.dark\:text-amber-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.dark\:text-blue-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.dark\:text-gray-200:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

.dark\:text-gray-300:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.dark\:text-gray-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.dark\:text-gray-500:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.dark\:text-green-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}

.dark\:text-neutral-300:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}

.dark\:text-orange-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}

.dark\:text-red-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.dark\:text-slate-400:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.dark\:text-white:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.dark\:hover\:bg-gray-600:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.dark\:hover\:bg-gray-700:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

.dark\:hover\:bg-gray-800:hover:is(.dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.dark\:hover\:text-blue-300:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}

.dark\:hover\:text-gray-300:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.dark\:hover\:text-red-300:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.dark\:hover\:text-white:hover:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:right-6 {
    right: 1.5rem;
  }

  .sm\:top-6 {
    top: 1.5rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mr-4 {
    margin-right: 1rem;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-\[600px\] {
    height: 600px;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:w-8 {
    width: 2rem;
  }

  .sm\:w-\[390px\] {
    width: 390px;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:grid-cols-\[390px_minmax\(0\2c 1fr\)\] {
    grid-template-columns: 390px minmax(0,1fr);
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .sm\:overflow-auto {
    overflow: auto;
  }

  .sm\:rounded-xl {
    border-radius: 0.75rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-3 {
    padding: 0.75rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:pr-2 {
    padding-right: 0.5rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .group:hover .sm\:group-hover\:opacity-100 {
    opacity: 1;
  }
}

@media (min-width: 768px) {

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }
}

@media (min-width: 1024px) {

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {

  .xl\:block {
    display: block;
  }

  .xl\:w-\[250px\] {
    width: 250px;
  }
}

.dark\:\[\&\[aria-selected\=false\]\]\:text-white[aria-selected=false]:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.dark\:\[\&\[aria-selected\=false\]\]\:hover\:text-white:hover[aria-selected=false]:is(.dark *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.\[\&\[aria-selected\=true\]\]\:text-foreground[aria-selected=true] {
  color: rgb(var(--foreground));
}

.\[\&\[aria-selected\=true\]\]\:hover\:bg-transparent:hover[aria-selected=true] {
  background-color: transparent;
}

.\[\&\[aria-selected\=true\]\]\:hover\:text-foreground:hover[aria-selected=true] {
  color: rgb(var(--foreground));
}

/* Premium Page Styles */

/* Override any missing Tailwind classes */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Custom gradient backgrounds */
.bg-gradient-to-r {
  background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-500 {
  --tw-gradient-from: #3b82f6;
  --tw-gradient-to: rgb(59 130 246 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-purple-600 {
  --tw-gradient-to: #9333ea;
}

/* Tom Select Styles for Sign Up Form Only */
/* Target the wrapper that Tom-Select creates around signUpCountry */
/* The wrapper inherits classes from the original select element */

/* Reset wrapper padding since Tom-Select applies it to the control */
#signUpCountry + .ts-wrapper {
  padding: 0 !important;
}



/* Light mode styles for the control (the visible input area) */
#signUpCountry + .ts-wrapper .ts-control {
  background-color: white !important;
  border: 1px solid rgb(209, 213, 219) !important; /* border-gray-300 */
  border-radius: 0.5rem !important; /* rounded-lg */
  padding: 0.5rem 0.75rem !important; /* py-2 px-3 */
  width: 100% !important;
  box-shadow: none !important;
  min-height: 2.5rem !important;
}

#signUpCountry + .ts-wrapper .ts-control input {
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  line-height: 1.5 !important;
  color: inherit !important;
}

/* Focus state */
#signUpCountry + .ts-wrapper.focus .ts-control {
  outline: none !important;
}

/* Dropdown menu */
#signUpCountry + .ts-wrapper .ts-dropdown {
  background-color: white !important;
  border: 1px solid rgb(209, 213, 219) !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  margin-top: 0.25rem !important;
}

#signUpCountry + .ts-wrapper .ts-dropdown .ts-dropdown-content {
  padding: 0.25rem !important;
}

#signUpCountry + .ts-wrapper .ts-dropdown .ts-option {
  padding: 0.5rem 0.75rem !important;
  color: rgb(17, 24, 39) !important; /* gray-900 */
  border-radius: 0.375rem !important;
}

#signUpCountry + .ts-wrapper .ts-dropdown .ts-option:hover,
#signUpCountry + .ts-wrapper .ts-dropdown .ts-option.active {
  background-color: rgb(243, 244, 246) !important; /* gray-100 */
}

#signUpCountry + .ts-wrapper .ts-dropdown .ts-option.selected {
  background-color: rgb(219, 234, 254) !important; /* blue-100 */
  color: rgb(30, 64, 175) !important; /* blue-800 */
}

/* Dark mode styles */
.dark #signUpCountry + .ts-wrapper .ts-control {
  background-color: rgb(55, 65, 81) !important; /* dark:bg-gray-700 */
  border-color: rgb(75, 85, 99) !important; /* dark:border-gray-600 */
  color: white !important;
}

.dark #signUpCountry + .ts-wrapper .ts-control input {
  background-color: transparent !important;
  color: white !important;
  padding: 0 !important;
}

.dark #signUpCountry + .ts-wrapper.focus .ts-control {
  outline: none !important;
}

.dark #signUpCountry + .ts-wrapper .ts-dropdown {
  background-color: rgb(55, 65, 81) !important; /* gray-700 */
  border-color: rgb(75, 85, 99) !important; /* gray-600 */
}

.dark #signUpCountry + .ts-wrapper .ts-dropdown .ts-option {
  color: white !important;
}

.dark #signUpCountry + .ts-wrapper .ts-dropdown .ts-option:hover,
.dark #signUpCountry + .ts-wrapper .ts-dropdown .ts-option.active {
  background-color: rgb(75, 85, 99) !important; /* gray-600 */
}

.dark #signUpCountry + .ts-wrapper .ts-dropdown .ts-option.selected {
  background-color: rgb(59, 130, 246) !important; /* blue-500 */
  color: white !important;
}

/* Ensure checkboxes are visible in dark mode */
.dark input[type="checkbox"] {
  background-color: rgb(55, 65, 81);
  border-color: rgb(75, 85, 99);
}

.dark input[type="checkbox"]:checked {
  background-color: rgb(37, 99, 235); /* blue-600 */
  border-color: rgb(37, 99, 235);
}

/* Dark mode support */
.dark {
  color-scheme: dark;
}

/* Notification styles */
.notification {
  transform: translateX(100%);
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-abuseprevent {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}

.dark ::-webkit-scrollbar-thumb {
  background: rgba(75, 85, 99, 0.3);
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: rgba(75, 85, 99, 0.5);
}

/* Pricing Upgrade Variables & Styles */
.theme-container-wrapper {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.theme-container-wrapper.theme-personal {
  --theme-primary: #2563eb;
  --theme-primary-hover: #1d4ed8;
  --theme-accent-readable: #3b82f6;
  --theme-gradient: linear-gradient(135deg, #3b82f6, #2563eb);
  --theme-glow: rgba(37, 99, 235, 0.12);
  --theme-border: rgba(37, 99, 235, 0.25);
  --theme-bg-light: #f0f6ff;
  --theme-bg-light-dark: rgba(37, 99, 235, 0.1);
  --theme-bg-hover: #f8fafc;
  --theme-bg-hover-dark: #232d3f;
  --theme-bg-pale-red: rgba(37, 99, 235, 0.03);
}

.theme-container-wrapper.theme-business {
  --theme-primary: #7c3aed;
  --theme-primary-hover: #6d28d9;
  --theme-accent-readable: #8b5cf6;
  --theme-gradient: linear-gradient(135deg, #a78bfa, #7c3aed);
  --theme-glow: rgba(124, 58, 237, 0.12);
  --theme-border: rgba(124, 58, 237, 0.25);
  --theme-bg-light: #f5f3ff;
  --theme-bg-light-dark: rgba(124, 58, 237, 0.1);
  --theme-bg-hover: #faf5ff;
  --theme-bg-hover-dark: #1e1b4b;
  --theme-bg-pale-red: rgba(124, 58, 237, 0.03);
}

.dark .theme-container-wrapper.theme-personal {
  --theme-accent-readable: #93c5fd;
}

.dark .theme-container-wrapper.theme-business {
  --theme-accent-readable: #c4b5fd;
}

/* Soft colored cloud / glow effect */
.theme-glow-blob {
  position: fixed;
  filter: blur(100px);
  pointer-events: none;
  border-radius: 50%;
  transition: background-color 0.5s ease;
  will-change: background-color;
  background-color: var(--theme-primary);
  opacity: 0.12;
  z-index: -10;
}
.dark .theme-glow-blob {
  opacity: 0.18;
}

/* Ensure all content inside pricing wrapper stacks above blobs */
#pricing-upgrade-wrapper > * {
  position: relative;
  z-index: 0;
}

/* Dynamic theme elements */
.theme-check-icon {
  background: var(--theme-gradient);
}
.theme-checkout-button {
  background: var(--theme-gradient);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}
.theme-checkout-button:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.theme-checkout-button:focus-visible {
  outline: 2px solid var(--theme-primary);
  outline-offset: 2px;
}

/* Custom styling for Plan Options */
.plan-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
  position: relative;
  background: white;
}
.dark .plan-option {
  border-color: #374151;
  background: #1f2937;
}

/* Hover behaviors */
.plan-option[data-plan="lite"]:hover {
  border-color: #2563eb;
  background: #f8fafc;
}
.dark .plan-option[data-plan="lite"]:hover {
  border-color: #3b82f6;
  background: #1f2937;
}

.plan-option[data-plan="ultra"]:hover {
  border-color: #7c3aed;
  background: #faf5ff;
}
.dark .plan-option[data-plan="ultra"]:hover {
  border-color: #a78bfa;
  background: #231d30;
}

/* Selected behaviors */
.plan-option[data-plan="lite"].selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(37, 99, 235, 0.1);
}
.dark .plan-option[data-plan="lite"].selected {
  border-color: #3b82f6;
  background: #1e3a5f;
}

.plan-option[data-plan="ultra"].selected {
  border-color: #7c3aed;
  background: #f5f3ff;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.1), 0 8px 10px -6px rgba(124, 58, 237, 0.1);
}
.dark .plan-option[data-plan="ultra"].selected {
  border-color: #a78bfa;
  background: #2d1b4e;
}

/* Radio circle styling inside plan options */
.plan-radio {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.dark .plan-radio {
  border-color: #4b5563;
}
.plan-radio::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.plan-option.selected .plan-radio::after {
  opacity: 1;
}

/* Radio circle colors based on selected plan */
.plan-option[data-plan="lite"].selected .plan-radio {
  border-color: #2563eb;
  background: #2563eb;
}
.dark .plan-option[data-plan="lite"].selected .plan-radio {
  border-color: #3b82f6;
  background: #3b82f6;
}

.plan-option[data-plan="ultra"].selected .plan-radio {
  border-color: #7c3aed;
  background: #7c3aed;
}
.dark .plan-option[data-plan="ultra"].selected .plan-radio {
  border-color: #a78bfa;
  background: #a78bfa;
}

.checkout-button {
  width: 100%;
  background: var(--theme-gradient);
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter;
  letter-spacing: 0.025rem;
}
.checkout-button:hover:not(:disabled) {
  transform: scale(1.015);
  filter: brightness(1.08);
}
.checkout-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Original plan-selector styles integrated with themes */
.plan-selector {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 1rem ;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.8);
}
.dark .plan-selector {
  background: #1f2937;
  border-color: rgba(55, 65, 81, 0.8);
}

.plan-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--theme-gradient);
  transition: background 0.3s ease;
}

.plan-badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-badge.popular {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.small-print {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}
.dark .small-print {
  border-top-color: #374151;
  color: #9ca3af;
}

.small-print a {
  color: var(--theme-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.small-print a:hover {
  opacity: 0.8;
}

/* Accordion max-height helper for smooth animations */
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.accordion-content.expanded {
  opacity: 1;
}

/* Carousel elements */
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(156, 163, 175, 0.4);
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background-color: var(--theme-primary);
  width: 18px;
  border-radius: 4px;
}

/* Sticky bottom CTA */
.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}
.sticky-footer-cta.visible {
  transform: translateY(0);
}

.sticky-footer-cta .checkout-button {
  margin-top: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Table utilities */
.comparison-table-wrapper {
  scrollbar-width: thin;
}
.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.3);
  border-radius: 3px;
}

/* Original features section styles restored */
.features-title {
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.dark .features-title {
  color: #e5e7eb;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: transparent;
  border: 2px solid var(--theme-primary, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.check-icon::after {
  content: '✓';
  color: var(--theme-primary, #2563eb);
  font-size: 0.7rem;
  font-weight: bold;
}

.check-icon.muted {
  border-color: #9ca3af;
}

.check-icon.muted::after {
  color: #9ca3af;
}

.check-icon.excluded {
  border-color: #ef4444;
}

.check-icon.excluded::after {
  content: '✕';
  color: #ef4444;
}

.feature-text {
  color: #374151;
}

.dark .feature-text {
  color: #d1d5db;
}

.feature-text.muted {
  color: #9ca3af;
  text-decoration: line-through;
}

.dark .feature-text.muted {
  color: #6b7280;
}

.feature-quota {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 0.25rem;
}

.dark .feature-quota {
  color: #9ca3af;
}

/* Ensure hidden plan options are actually hidden overriding display: flex */
.plan-option.hidden {
  display: none !important;
}

/* Responsive Sticky First Column for Comparison Table */
.comparison-table-wrapper table th:first-child {
  position: sticky;
  left: 0;
  background-color: #f9fafb;
  z-index: 10;
}
.dark .comparison-table-wrapper table th:first-child {
  background-color: #1f2937;
}

.comparison-table-wrapper table td:first-child {
  position: sticky;
  left: 0;
  background-color: white;
  z-index: 10;
  font-weight: 600;
  border-right: 1px solid rgba(229, 231, 235, 0.4);
}
.dark .comparison-table-wrapper table td:first-child {
  background-color: #111827;
  border-right-color: rgba(55, 65, 81, 0.4);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


/*# sourceMappingURL=critical-styles.71d6e92778a081064a4e.css.map*/