/* ./src/index.css */

/* === BUTTON STYLES === */

/* Base Button */

.button {
  font-weight: 600 !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
  padding: 0.625rem 1rem !important;
  font-size: 1rem !important;
  min-height: 2.5rem !important;
  cursor: pointer !important;
}

.button:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button:disabled:hover {
  background: var(--p-surface-300) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Button Sizes */

.button-large {
  padding: 0.75rem 1.5rem !important;
  font-size: 1.1rem !important;
  border-radius: 0.75rem !important;
  min-height: 3rem !important;
}

.button-slim {
  padding: 0.375rem 0.75rem !important;
  font-size: 0.875rem !important;
  min-height: 2rem !important;
}

.button-full {
  width: 100% !important;
  margin-top: 0.75rem !important;
}

/* Button Variants */

.button-primary {
  background: var(--p-primary-500) !important;
  border: 2px solid var(--p-surface-0) !important;
  color: var(--p-surface-0) !important;
}

.button-primary:hover {
  background: linear-gradient(
    135deg,
    var(--p-primary-600),
    var(--p-primary-700)
  );
  box-shadow: 0 6px 20px var(--p-surface-400) !important;
  transform: translateY(-2px) !important;
}

.button-secondary {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-primary-500) !important;
  color: var(--p-primary-500) !important;
}

.button-secondary:hover {
  background: var(--p-primary-500);
  color: var(--p-surface-0);
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-primary-danger {
  background: var(--p-danger-300) !important;
  border: 2px solid var(--p-danger-400) !important;
  color: var(--p-danger-800) !important;
}

.button-primary-danger:hover {
  background: var(--p-danger-400) !important;
  color: var(--p-danger-50) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-secondary-danger {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-danger-300) !important;
  color: var(--p-danger-300) !important;
}

.button-secondary-danger:hover {
  background: var(--p-danger-300) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-primary-warning {
  background: var(--p-warning-300) !important;
  border: 2px solid var(--p-warning-400) !important;
  color: var(--p-warning-800) !important;
}

.button-primary-warning:hover {
  background: var(--p-warning-400) !important;
  color: var(--p-warning-50) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-secondary-warning {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-warning-300) !important;
  color: var(--p-warning-300) !important;
}

.button-secondary-warning:hover {
  background: var(--p-warning-300) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-primary-dark {
  background: var(--p-surface-800) !important;
  border: 2px solid var(--p-surface-0) !important;
  color: var(--p-surface-0) !important;
}

.button-primary-dark:hover {
  background: var(--p-surface-700) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-primary-dark:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-primary-dark:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-secondary-dark {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-surface-800) !important;
  color: var(--p-surface-800) !important;
}

.button-secondary-dark:hover {
  background: var(--p-surface-800) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-secondary-dark:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-secondary-dark:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-primary-gold {
  background: var(--p-warning-300) !important;
  border: 2px solid var(--p-warning-200) !important;
}

.button-primary-gold:deep(.p-button-label) {
  color: var(--p-warning-50) !important;
}

.button-primary-gold:hover {
  background: var(--p-warning-400) !important;
}

.button-primary-gold:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-primary-gold:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Specialized Button Types */

.button-refresh {
  background: transparent;
  border: 2px solid var(--p-primary-500);
  color: var(--p-primary-500);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  transition: all 0.3s ease;
}

.button-refresh:hover {
  background: var(--p-primary-500);
  color: var(--p-surface-0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--p-primary-500/40);
}

.button-refresh-small {
  background: transparent;
  border: 2px solid var(--p-primary-500);
  color: var(--p-primary-500);
  border-radius: 0.5rem;
  padding: 0.5rem;
  min-height: 2rem;
  transition: all 0.3s ease;
}

.button-refresh-small:hover {
  background: var(--p-primary-500);
  color: var(--p-surface-0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--p-primary-500/40);
}

/* Button Groups */

.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.button-icon-primary {
  /* round button with icon only, same as primary but round with icon only */
  background: var(--p-primary-500) !important;
  border: 2px solid var(--p-primary-700) !important;
  color: var(--p-primary-0) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-primary:hover {
  background: var(--p-primary-600) !important;
  color: var(--p-primary-0) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px var(--p-surface-400) !important;
}

.button-icon-primary:disabled {
  /* as per primary disabled by round and icon only */
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-primary:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-secondary {
  /* round button with icon only, same as primary but round with icon only */
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-primary-500) !important;
  color: var(--p-primary-500) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-secondary:hover {
  background: var(--p-primary-50) !important;
  color: var(--p-primary-700) !important;
  border-color: var(--p-primary-600) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px var(--p-primary-100) !important;
}

.button-icon-secondary:disabled {
  /* as per secondary button but round with icon only */
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-secondary:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-dark {
  background: var(--p-surface-800) !important;
  border: none !important;
  color: var(--p-surface-0) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-dark:hover {
  background: var(--p-surface-700) !important;
  color: var(--p-surface-0) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px var(--p-surface-400) !important;
}

.button-icon-dark:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-dark:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-primary-danger {
  background: var(--p-danger-300) !important;
  border: 2px solid var(--p-danger-400) !important;
  color: var(--p-danger-800) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-primary-danger:hover {
  background: var(--p-danger-400) !important;
  color: var(--p-danger-50) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-icon-primary-danger:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-primary-danger:disabled:hover {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-secondary-danger {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-danger-300) !important;
  color: var(--p-danger-300) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-secondary-danger:hover {
  background: var(--p-danger-300) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-icon-secondary-danger:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-primary-warning {
  background: var(--p-warning-300) !important;
  border: 2px solid var(--p-warning-400) !important;
  color: var(--p-warning-800) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-primary-warning:hover {
  background: var(--p-warning-400) !important;
  color: var(--p-warning-50) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-icon-primary-warning:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.button-icon-secondary-warning {
  background: var(--p-surface-0) !important;
  border: 2px solid var(--p-warning-300) !important;
  color: var(--p-warning-300) !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.button-icon-secondary-warning:hover {
  background: var(--p-warning-300) !important;
  color: var(--p-surface-0) !important;
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.button-icon-secondary-warning:disabled {
  background: var(--p-surface-200) !important;
  color: var(--p-surface-500) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* === FROSTED / GLASS STYLES === */

/* These styles are applied only when the .frosted class is present on a parent element (e.g., App.vue) */

.frosted .button {
  --blur: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.frosted .button-primary {
  background: linear-gradient(
    135deg,
    var(--p-primary-500),
    var(--p-primary-700)
  ) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.frosted .button-primary:hover {
  background: linear-gradient(
    135deg,
    var(--p-primary-600),
    var(--p-primary-700)
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgb(from var(--p-primary-500) r g b / 0.4) !important;
}

.frosted .button-secondary {
  background: var(--p-surface-0) !important;
  color: var(--p-primary-300) !important;
  border-color: rgba(var(--p-primary-500), 0.3) !important;
}

.frosted .button-secondary:hover {
  background: var(--p-surface-100) !important;
  color: var(--p-primary-600) !important;
}

.frosted .button-primary-danger {
  background: linear-gradient(
    135deg,
    var(--p-danger-500),
    var(--p-danger-700)
  ) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.frosted .button-primary-warning {
  background: linear-gradient(
    135deg,
    var(--p-warning-500),
    var(--p-warning-700)
  ) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.frosted .button:disabled {
  background: var(--p-surface-200) !important;
  color: rgba(from var(--p-primary-400) r g b / 0.8) !important;
  opacity: 1 !important;
  border-color: rgba(from var(--p-primary-100) r g b / 1) !important;
  box-shadow: none !important;
}

.frosted .button:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

*, ::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 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 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;
  }
}

.rotating-border {
    --border-angle: 0deg;
    --border-color: white;
    --inner-bg: #afafaf;
    --animation-speed: 4s;

    animation: border-angle-rotate var(--animation-speed) infinite linear;
    border: 2.5px solid transparent;

    background:
      linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box,
      conic-gradient(
          from var(--border-angle),
          var(--inner-bg) 50%,
          var(--border-color)
        )
        border-box;
  }

@keyframes border-angle-rotate {
    from {
      --border-angle: 0deg;
    }
    to {
      --border-angle: 360deg;
    }
  }

.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 !important;
}

.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-1 {
  bottom: 0.25rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-full {
  bottom: 100%;
}

.left-1 {
  left: 0.25rem;
}

.left-1\/2 {
  left: 50%;
}

.left-2 {
  left: 0.5rem;
}

.right-2 {
  right: 0.5rem;
}

.top-1\/2 {
  top: 50%;
}

.top-full {
  top: 100%;
}

.isolate {
  isolation: isolate;
}

.z-10 {
  z-index: 10;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.\!m-0 {
  margin: 0px !important;
}

.m-0 {
  margin: 0px;
}

.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.-my-1 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.\!mb-0 {
  margin-bottom: 0px !important;
}

.\!mb-3 {
  margin-bottom: 0.75rem !important;
}

.\!mb-4 {
  margin-bottom: 1rem !important;
}

.\!mt-0 {
  margin-top: 0px !important;
}

.\!mt-4 {
  margin-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0px;
}

.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;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.size-px {
  width: 1px;
  height: 1px;
}

.\!h-4 {
  height: 1rem !important;
}

.\!h-5 {
  height: 1.25rem !important;
}

.\!h-8 {
  height: 2rem !important;
}

.\!h-9 {
  height: 2.25rem !important;
}

.\!h-auto {
  height: auto !important;
}

.h-10 {
  height: 2.5rem;
}

.h-2 {
  height: 0.5rem;
}

.h-24 {
  height: 6rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-64 {
  height: 16rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-80 {
  height: 20rem;
}

.h-\[400px\] {
  height: 400px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.\!max-h-8 {
  max-height: 2rem !important;
}

.\!max-h-screen {
  max-height: 100vh !important;
}

.max-h-80 {
  max-height: 20rem;
}

.max-h-\[500px\] {
  max-height: 500px;
}

.\!min-h-12 {
  min-height: 3rem !important;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-10 {
  min-height: 2.5rem;
}

.min-h-\[300px\] {
  min-height: 300px;
}

.min-h-screen {
  min-height: 100vh;
}

.\!w-0 {
  width: 0px !important;
}

.\!w-10 {
  width: 2.5rem !important;
}

.\!w-4 {
  width: 1rem !important;
}

.\!w-full {
  width: 100% !important;
}

.w-10 {
  width: 2.5rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-3 {
  width: 0.75rem;
}

.w-5\/6 {
  width: 83.333333%;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-80 {
  width: 20rem;
}

.w-full {
  width: 100%;
}

.\!min-w-12 {
  min-width: 3rem !important;
}

.min-w-\[120px\] {
  min-width: 120px;
}

.min-w-\[200px\] {
  min-width: 200px;
}

.min-w-\[80px\] {
  min-width: 80px;
}

.\!max-w-full {
  max-width: 100% !important;
}

.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-full {
  max-width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink {
  flex-shrink: 1;
}

.flex-grow {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.-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));
}

.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 bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes pulse {

  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.\!cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default;
}

.cursor-help {
  cursor: help;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.\!list-none {
  list-style-type: none !important;
}

.list-decimal {
  list-style-type: decimal;
}

.list-disc {
  list-style-type: disc;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-\[1fr_3fr\] {
  grid-template-columns: 1fr 3fr;
}

.grid-cols-\[20px_1fr\] {
  grid-template-columns: 20px 1fr;
}

.grid-cols-\[40px_1fr\] {
  grid-template-columns: 40px 1fr;
}

.grid-cols-\[auto_1fr_auto_30px\] {
  grid-template-columns: auto 1fr auto 30px;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.\!justify-between {
  justify-content: space-between !important;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.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)));
}

.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-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));
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.text-wrap {
  text-wrap: wrap;
}

.break-all {
  word-break: break-all;
}

.\!rounded-md {
  border-radius: 0.375rem !important;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.\!border-0 {
  border-width: 0px !important;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-none {
  border-style: none;
}

.border-\[var\(--p-red-300\)\] {
  border-color: var(--p-red-300);
}

.border-\[var\(--p-surface-200\)\] {
  border-color: var(--p-surface-200);
}

.border-\[var\(--surface-border\)\] {
  border-color: var(--surface-border);
}

.border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / 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-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-indigo-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}

.border-orange-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}

.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}

.border-t-gray-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}

.\!bg-green-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1)) !important;
}

.\!bg-red-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1)) !important;
}

.\!bg-transparent {
  background-color: transparent !important;
}

.bg-\[var\(--p-red-50\)\] {
  background-color: var(--p-red-50);
}

.bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}

.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.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-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / 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-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}

.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.bg-green-100\/75 {
  background-color: rgb(220 252 231 / 0.75);
}

.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

.bg-indigo-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}

.bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}

.bg-indigo-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}

.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}

.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-100\/75 {
  background-color: rgb(254 226 226 / 0.75);
}

.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-500\/90 {
  background-color: rgb(239 68 68 / 0.9);
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-teal-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}

.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}

.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}

.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}

.object-contain {
  object-fit: contain;
}

.\!p-0 {
  padding: 0px !important;
}

.\!p-2 {
  padding: 0.5rem !important;
}

.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;
}

.\!px-1\.5 {
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}

.\!py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.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-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.\!pb-0 {
  padding-bottom: 0px !important;
}

.\!pb-1 {
  padding-bottom: 0.25rem !important;
}

.\!pl-0 {
  padding-left: 0px !important;
}

.\!pl-1 {
  padding-left: 0.25rem !important;
}

.\!pr-1 {
  padding-right: 0.25rem !important;
}

.\!pt-0 {
  padding-top: 0px !important;
}

.\!pt-1 {
  padding-top: 0.25rem !important;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.\!text-\[0\.65rem\] {
  font-size: 0.65rem !important;
}

.\!text-\[8px\] {
  font-size: 8px !important;
}

.\!text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.\!text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[9px\] {
  font-size: 9px;
}

.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-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.\!text-green-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1)) !important;
}

.\!text-red-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1)) !important;
}

.text-\[var\(--p-red-600\)\] {
  color: var(--p-red-600);
}

.text-\[var\(--p-red-700\)\] {
  color: var(--p-red-700);
}

.text-\[var\(--text-secondary-color\)\] {
  color: var(--text-secondary-color);
}

.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}

.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}

.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.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-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-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / 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-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.text-indigo-900 {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}

.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}

.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}

.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}

.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}

.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}

.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.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-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}

.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}

.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}

.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.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-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 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);
}

.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-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px 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);
}

.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
  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);
}

.invert {
  --tw-invert: invert(100%);
  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);
}

.sepia {
  --tw-sepia: sepia(100%);
  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);
  -webkit-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);
  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);
}

.backdrop-filter {
  -webkit-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);
  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;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.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);
}

.font-condensed {
    font-stretch: 25%;
  }

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:left-\[2px\]::after {
  content: var(--tw-content);
  left: 2px;
}

.after\:top-0\.5::after {
  content: var(--tw-content);
  top: 0.125rem;
}

.after\:h-3::after {
  content: var(--tw-content);
  height: 0.75rem;
}

.after\:w-3::after {
  content: var(--tw-content);
  width: 0.75rem;
}

.after\:rounded-full::after {
  content: var(--tw-content);
  border-radius: 9999px;
}

.after\:bg-white::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.after\:transition-all::after {
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}

.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}

.hover\:bg-indigo-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}

.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-yellow-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group[open] .group-open\:border-b {
  border-bottom-width: 1px;
}

.group:hover .group-hover\:text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.peer:checked ~ .peer-checked\:bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.peer:checked ~ .peer-checked\:after\:translate-x-full::after {
  content: var(--tw-content);
  --tw-translate-x: 100%;
  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));
}

@media (min-width: 640px) {

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {

  .md\:w-auto {
    width: auto;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.dark\:border-orange-800:where([class="p-dark"], [class="p-dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}

.dark\:bg-orange-900\/30:where([class="p-dark"], [class="p-dark"] *) {
  background-color: rgb(124 45 18 / 0.3);
}

.dark\:text-orange-300:where([class="p-dark"], [class="p-dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}

.dark\:text-orange-400:where([class="p-dark"], [class="p-dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper__popper{z-index:10000;top:0;left:0;outline:none}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__popper.v-popper__popper--shown{visibility:visible;opacity:1;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{transition:none!important}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__inner>div{position:relative;z-index:1;max-width:inherit;max-height:inherit}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{display:none}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{left:-2px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{left:-1px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{border-bottom-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:0}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{border-top-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{top:-4px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{top:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{top:-1px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{border-left-width:0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{left:-4px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{left:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{border-right-width:0;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{left:-2px}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;border-radius:6px;border:1px solid #ddd;box-shadow:0 6px 30px #0000001a}.v-popper--theme-dropdown .v-popper__arrow-inner{visibility:visible;border-color:#fff}.v-popper--theme-dropdown .v-popper__arrow-outer{border-color:#ddd}
.vjs-tree-brackets{cursor:pointer}.vjs-tree-brackets:hover{color:#1890ff}.vjs-check-controller{position:absolute;left:0}.vjs-check-controller.is-checked .vjs-check-controller-inner{background-color:#1890ff;border-color:#0076e4}.vjs-check-controller.is-checked .vjs-check-controller-inner.is-checkbox:after{transform:rotate(45deg) scaleY(1)}.vjs-check-controller.is-checked .vjs-check-controller-inner.is-radio:after{transform:translate(-50%,-50%) scale(1)}.vjs-check-controller .vjs-check-controller-inner{display:inline-block;position:relative;border:1px solid #bfcbd9;border-radius:2px;vertical-align:middle;box-sizing:border-box;width:16px;height:16px;background-color:#fff;z-index:1;cursor:pointer;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.vjs-check-controller .vjs-check-controller-inner:after{box-sizing:content-box;content:"";border:2px solid #fff;border-left:0;border-top:0;height:8px;left:4px;position:absolute;top:1px;transform:rotate(45deg) scaleY(0);width:4px;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) .05s;transform-origin:center}.vjs-check-controller .vjs-check-controller-inner.is-radio{border-radius:100%}.vjs-check-controller .vjs-check-controller-inner.is-radio:after{border-radius:100%;height:4px;background-color:#fff;left:50%;top:50%}.vjs-check-controller .vjs-check-controller-original{opacity:0;outline:none;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.vjs-carets{position:absolute;right:0;cursor:pointer}.vjs-carets svg{transition:transform .3s}.vjs-carets:hover{color:#1890ff}.vjs-carets-close{transform:rotate(-90deg)}.vjs-tree-node{display:flex;position:relative;line-height:20px}.vjs-tree-node.has-carets{padding-left:15px}.vjs-tree-node.has-carets.has-selector,.vjs-tree-node.has-selector{padding-left:30px}.vjs-tree-node.is-highlight,.vjs-tree-node:hover{background-color:#e6f7ff;border-radius:4px}.vjs-tree-node.is-highlight .vjs-tree-node-actions,.vjs-tree-node:hover .vjs-tree-node-actions{display:block}.vjs-tree-node .vjs-indent{display:flex;position:relative}.vjs-tree-node .vjs-indent-unit.has-line{border-left:1px dashed #bfcbd9}.vjs-tree-node .vjs-tree-node-actions{display:none;position:absolute;right:0;top:0;padding:0 4px;background-color:#e6f7ff;border-radius:4px}.vjs-tree-node .vjs-tree-node-actions .vjs-tree-node-actions-item{cursor:pointer}.vjs-tree-node .vjs-tree-node-actions .vjs-tree-node-actions-item:hover{color:#1890ff}.vjs-tree-node.dark.is-highlight,.vjs-tree-node.dark .vjs-tree-node-actions,.vjs-tree-node.dark:hover{background-color:#2e4558}.vjs-node-index{position:absolute;right:100%;margin-right:4px;user-select:none}.vjs-colon{white-space:pre}.vjs-comment{color:#bfcbd9}.vjs-key{white-space:nowrap}.vjs-value{word-break:break-word}.vjs-tree-node.dynamic-height .vjs-value{white-space:pre-wrap}.vjs-value-null,.vjs-value-undefined{color:#d55fde}.vjs-value-boolean,.vjs-value-number{color:#1d8ce0}.vjs-value-string{color:#13ce66}.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace;font-size:14px;text-align:left}.vjs-tree.is-virtual{overflow:auto}.vjs-tree.is-virtual .vjs-tree-node{white-space:nowrap}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/assets/fontawesome-webfont-G5YE5S7X.eot?v=4.7.0');src:url('/assets/fontawesome-webfont-G5YE5S7X.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/assets/fontawesome-webfont-B-jkhYfk.woff2?v=4.7.0') format('woff2'),url('/assets/fontawesome-webfont-CDK5bt4p.woff?v=4.7.0') format('woff'),url('/assets/fontawesome-webfont-CQDK8MU3.ttf?v=4.7.0') format('truetype'),url('/assets/fontawesome-webfont-BA1xjjzB.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@font-face {
    font-family: 'primeicons';
    font-display: block;
    src: url('/assets/primeicons-DMOk5skT.eot');
    src: url('/assets/primeicons-DMOk5skT.eot?#iefix') format('embedded-opentype'), url('/assets/primeicons-C6QP2o4f.woff2') format('woff2'), url('/assets/primeicons-WjwUDZjB.woff') format('woff'), url('/assets/primeicons-MpK4pl85.ttf') format('truetype'), url('/assets/primeicons-Dr5RGzOO.svg?#primeicons') format('svg');
    font-weight: normal;
    font-style: normal;
}

.pi {
    font-family: 'primeicons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pi:before {
    --webkit-backface-visibility:hidden;
    backface-visibility: hidden;
}

.pi-fw {
    width: 1.28571429em;
    text-align: center;
}

.pi-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.pi-folder-plus:before {
    content: "\ea05";
}

.pi-receipt:before {
    content: "\ea06";
}

.pi-asterisk:before {
    content: "\ea07";
}

.pi-face-smile:before {
    content: "\ea08";
}

.pi-pinterest:before {
    content: "\ea09";
}

.pi-expand:before {
    content: "\ea0a";
}

.pi-pen-to-square:before {
    content: "\ea0b";
}

.pi-wave-pulse:before {
    content: "\ea0c";
}

.pi-turkish-lira:before {
    content: "\ea0d";
}

.pi-spinner-dotted:before {
    content: "\ea0e";
}

.pi-crown:before {
    content: "\ea0f";
}

.pi-pause-circle:before {
    content: "\ea10";
}

.pi-warehouse:before {
    content: "\ea11";
}

.pi-objects-column:before {
    content: "\ea12";
}

.pi-clipboard:before {
    content: "\ea13";
}

.pi-play-circle:before {
    content: "\ea14";
}

.pi-venus:before {
    content: "\ea15";
}

.pi-cart-minus:before {
    content: "\ea16";
}

.pi-file-plus:before {
    content: "\ea17";
}

.pi-microchip:before {
    content: "\ea18";
}

.pi-twitch:before {
    content: "\ea19";
}

.pi-building-columns:before {
    content: "\ea1a";
}

.pi-file-check:before {
    content: "\ea1b";
}

.pi-microchip-ai:before {
    content: "\ea1c";
}

.pi-trophy:before {
    content: "\ea1d";
}

.pi-barcode:before {
    content: "\ea1e";
}

.pi-file-arrow-up:before {
    content: "\ea1f";
}

.pi-mars:before {
    content: "\ea20";
}

.pi-tiktok:before {
    content: "\ea21";
}

.pi-arrow-up-right-and-arrow-down-left-from-center:before {
    content: "\ea22";
}

.pi-ethereum:before {
    content: "\ea23";
}

.pi-list-check:before {
    content: "\ea24";
}

.pi-thumbtack:before {
    content: "\ea25";
}

.pi-arrow-down-left-and-arrow-up-right-to-center:before {
    content: "\ea26";
}

.pi-equals:before {
    content: "\ea27";
}

.pi-lightbulb:before {
    content: "\ea28";
}

.pi-star-half:before {
    content: "\ea29";
}

.pi-address-book:before {
    content: "\ea2a";
}

.pi-chart-scatter:before {
    content: "\ea2b";
}

.pi-indian-rupee:before {
    content: "\ea2c";
}

.pi-star-half-fill:before {
    content: "\ea2d";
}

.pi-cart-arrow-down:before {
    content: "\ea2e";
}

.pi-calendar-clock:before {
    content: "\ea2f";
}

.pi-sort-up-fill:before {
    content: "\ea30";
}

.pi-sparkles:before {
    content: "\ea31";
}

.pi-bullseye:before {
    content: "\ea32";
}

.pi-sort-down-fill:before {
    content: "\ea33";
}

.pi-graduation-cap:before {
    content: "\ea34";
}

.pi-hammer:before {
    content: "\ea35";
}

.pi-bell-slash:before {
    content: "\ea36";
}

.pi-gauge:before {
    content: "\ea37";
}

.pi-shop:before {
    content: "\ea38";
}

.pi-headphones:before {
    content: "\ea39";
}

.pi-eraser:before {
    content: "\ea04";
}

.pi-stopwatch:before {
    content: "\ea01";
}

.pi-verified:before {
    content: "\ea02";
}

.pi-delete-left:before {
    content: "\ea03";
}

.pi-hourglass:before {
    content: "\e9fe";
}

.pi-truck:before {
    content: "\ea00";
}

.pi-wrench:before {
    content: "\e9ff";
}

.pi-microphone:before {
    content: "\e9fa";
}

.pi-megaphone:before {
    content: "\e9fb";
}

.pi-arrow-right-arrow-left:before {
    content: "\e9fc";
}

.pi-bitcoin:before {
    content: "\e9fd";
}

.pi-file-edit:before {
    content: "\e9f6";
}

.pi-language:before {
    content: "\e9f7";
}

.pi-file-export:before {
    content: "\e9f8";
}

.pi-file-import:before {
    content: "\e9f9";
}

.pi-file-word:before {
    content: "\e9f1";
}

.pi-gift:before {
    content: "\e9f2";
}

.pi-cart-plus:before {
    content: "\e9f3";
}

.pi-thumbs-down-fill:before {
    content: "\e9f4";
}

.pi-thumbs-up-fill:before {
    content: "\e9f5";
}

.pi-arrows-alt:before {
    content: "\e9f0";
}

.pi-calculator:before {
    content: "\e9ef";
}

.pi-sort-alt-slash:before {
    content: "\e9ee";
}

.pi-arrows-h:before {
    content: "\e9ec";
}

.pi-arrows-v:before {
    content: "\e9ed";
}

.pi-pound:before {
    content: "\e9eb";
}

.pi-prime:before {
    content: "\e9ea";
}

.pi-chart-pie:before {
    content: "\e9e9";
}

.pi-reddit:before {
    content: "\e9e8";
}

.pi-code:before {
    content: "\e9e7";
}

.pi-sync:before {
    content: "\e9e6";
}

.pi-shopping-bag:before {
    content: "\e9e5";
}

.pi-server:before {
    content: "\e9e4";
}

.pi-database:before {
    content: "\e9e3";
}

.pi-hashtag:before {
    content: "\e9e2";
}

.pi-bookmark-fill:before {
    content: "\e9df";
}

.pi-filter-fill:before {
    content: "\e9e0";
}

.pi-heart-fill:before {
    content: "\e9e1";
}

.pi-flag-fill:before {
    content: "\e9de";
}

.pi-circle:before {
    content: "\e9dc";
}

.pi-circle-fill:before {
    content: "\e9dd";
}

.pi-bolt:before {
    content: "\e9db";
}

.pi-history:before {
    content: "\e9da";
}

.pi-box:before {
    content: "\e9d9";
}

.pi-at:before {
    content: "\e9d8";
}

.pi-arrow-up-right:before {
    content: "\e9d4";
}

.pi-arrow-up-left:before {
    content: "\e9d5";
}

.pi-arrow-down-left:before {
    content: "\e9d6";
}

.pi-arrow-down-right:before {
    content: "\e9d7";
}

.pi-telegram:before {
    content: "\e9d3";
}

.pi-stop-circle:before {
    content: "\e9d2";
}

.pi-stop:before {
    content: "\e9d1";
}

.pi-whatsapp:before {
    content: "\e9d0";
}

.pi-building:before {
    content: "\e9cf";
}

.pi-qrcode:before {
    content: "\e9ce";
}

.pi-car:before {
    content: "\e9cd";
}

.pi-instagram:before {
    content: "\e9cc";
}

.pi-linkedin:before {
    content: "\e9cb";
}

.pi-send:before {
    content: "\e9ca";
}

.pi-slack:before {
    content: "\e9c9";
}

.pi-sun:before {
    content: "\e9c8";
}

.pi-moon:before {
    content: "\e9c7";
}

.pi-vimeo:before {
    content: "\e9c6";
}

.pi-youtube:before {
    content: "\e9c5";
}

.pi-flag:before {
    content: "\e9c4";
}

.pi-wallet:before {
    content: "\e9c3";
}

.pi-map:before {
    content: "\e9c2";
}

.pi-link:before {
    content: "\e9c1";
}

.pi-credit-card:before {
    content: "\e9bf";
}

.pi-discord:before {
    content: "\e9c0";
}

.pi-percentage:before {
    content: "\e9be";
}

.pi-euro:before {
    content: "\e9bd";
}

.pi-book:before {
    content: "\e9ba";
}

.pi-shield:before {
    content: "\e9b9";
}

.pi-paypal:before {
    content: "\e9bb";
}

.pi-amazon:before {
    content: "\e9bc";
}

.pi-phone:before {
    content: "\e9b8";
}

.pi-filter-slash:before {
    content: "\e9b7";
}

.pi-facebook:before {
    content: "\e9b4";
}

.pi-github:before {
    content: "\e9b5";
}

.pi-twitter:before {
    content: "\e9b6";
}

.pi-step-backward-alt:before {
    content: "\e9ac";
}

.pi-step-forward-alt:before {
    content: "\e9ad";
}

.pi-forward:before {
    content: "\e9ae";
}

.pi-backward:before {
    content: "\e9af";
}

.pi-fast-backward:before {
    content: "\e9b0";
}

.pi-fast-forward:before {
    content: "\e9b1";
}

.pi-pause:before {
    content: "\e9b2";
}

.pi-play:before {
    content: "\e9b3";
}

.pi-compass:before {
    content: "\e9ab";
}

.pi-id-card:before {
    content: "\e9aa";
}

.pi-ticket:before {
    content: "\e9a9";
}

.pi-file-o:before {
    content: "\e9a8";
}

.pi-reply:before {
    content: "\e9a7";
}

.pi-directions-alt:before {
    content: "\e9a5";
}

.pi-directions:before {
    content: "\e9a6";
}

.pi-thumbs-up:before {
    content: "\e9a3";
}

.pi-thumbs-down:before {
    content: "\e9a4";
}

.pi-sort-numeric-down-alt:before {
    content: "\e996";
}

.pi-sort-numeric-up-alt:before {
    content: "\e997";
}

.pi-sort-alpha-down-alt:before {
    content: "\e998";
}

.pi-sort-alpha-up-alt:before {
    content: "\e999";
}

.pi-sort-numeric-down:before {
    content: "\e99a";
}

.pi-sort-numeric-up:before {
    content: "\e99b";
}

.pi-sort-alpha-down:before {
    content: "\e99c";
}

.pi-sort-alpha-up:before {
    content: "\e99d";
}

.pi-sort-alt:before {
    content: "\e99e";
}

.pi-sort-amount-up:before {
    content: "\e99f";
}

.pi-sort-amount-down:before {
    content: "\e9a0";
}

.pi-sort-amount-down-alt:before {
    content: "\e9a1";
}

.pi-sort-amount-up-alt:before {
    content: "\e9a2";
}

.pi-palette:before {
    content: "\e995";
}

.pi-undo:before {
    content: "\e994";
}

.pi-desktop:before {
    content: "\e993";
}

.pi-sliders-v:before {
    content: "\e991";
}

.pi-sliders-h:before {
    content: "\e992";
}

.pi-search-plus:before {
    content: "\e98f";
}

.pi-search-minus:before {
    content: "\e990";
}

.pi-file-excel:before {
    content: "\e98e";
}

.pi-file-pdf:before {
    content: "\e98d";
}

.pi-check-square:before {
    content: "\e98c";
}

.pi-chart-line:before {
    content: "\e98b";
}

.pi-user-edit:before {
    content: "\e98a";
}

.pi-exclamation-circle:before {
    content: "\e989";
}

.pi-android:before {
    content: "\e985";
}

.pi-google:before {
    content: "\e986";
}

.pi-apple:before {
    content: "\e987";
}

.pi-microsoft:before {
    content: "\e988";
}

.pi-heart:before {
    content: "\e984";
}

.pi-mobile:before {
    content: "\e982";
}

.pi-tablet:before {
    content: "\e983";
}

.pi-key:before {
    content: "\e981";
}

.pi-shopping-cart:before {
    content: "\e980";
}

.pi-comments:before {
    content: "\e97e";
}

.pi-comment:before {
    content: "\e97f";
}

.pi-briefcase:before {
    content: "\e97d";
}

.pi-bell:before {
    content: "\e97c";
}

.pi-paperclip:before {
    content: "\e97b";
}

.pi-share-alt:before {
    content: "\e97a";
}

.pi-envelope:before {
    content: "\e979";
}

.pi-volume-down:before {
    content: "\e976";
}

.pi-volume-up:before {
    content: "\e977";
}

.pi-volume-off:before {
    content: "\e978";
}

.pi-eject:before {
    content: "\e975";
}

.pi-money-bill:before {
    content: "\e974";
}

.pi-images:before {
    content: "\e973";
}

.pi-image:before {
    content: "\e972";
}

.pi-sign-in:before {
    content: "\e970";
}

.pi-sign-out:before {
    content: "\e971";
}

.pi-wifi:before {
    content: "\e96f";
}

.pi-sitemap:before {
    content: "\e96e";
}

.pi-chart-bar:before {
    content: "\e96d";
}

.pi-camera:before {
    content: "\e96c";
}

.pi-dollar:before {
    content: "\e96b";
}

.pi-lock-open:before {
    content: "\e96a";
}

.pi-table:before {
    content: "\e969";
}

.pi-map-marker:before {
    content: "\e968";
}

.pi-list:before {
    content: "\e967";
}

.pi-eye-slash:before {
    content: "\e965";
}

.pi-eye:before {
    content: "\e966";
}

.pi-folder-open:before {
    content: "\e964";
}

.pi-folder:before {
    content: "\e963";
}

.pi-video:before {
    content: "\e962";
}

.pi-inbox:before {
    content: "\e961";
}

.pi-lock:before {
    content: "\e95f";
}

.pi-unlock:before {
    content: "\e960";
}

.pi-tags:before {
    content: "\e95d";
}

.pi-tag:before {
    content: "\e95e";
}

.pi-power-off:before {
    content: "\e95c";
}

.pi-save:before {
    content: "\e95b";
}

.pi-question-circle:before {
    content: "\e959";
}

.pi-question:before {
    content: "\e95a";
}

.pi-copy:before {
    content: "\e957";
}

.pi-file:before {
    content: "\e958";
}

.pi-clone:before {
    content: "\e955";
}

.pi-calendar-times:before {
    content: "\e952";
}

.pi-calendar-minus:before {
    content: "\e953";
}

.pi-calendar-plus:before {
    content: "\e954";
}

.pi-ellipsis-v:before {
    content: "\e950";
}

.pi-ellipsis-h:before {
    content: "\e951";
}

.pi-bookmark:before {
    content: "\e94e";
}

.pi-globe:before {
    content: "\e94f";
}

.pi-replay:before {
    content: "\e94d";
}

.pi-filter:before {
    content: "\e94c";
}

.pi-print:before {
    content: "\e94b";
}

.pi-align-right:before {
    content: "\e946";
}

.pi-align-left:before {
    content: "\e947";
}

.pi-align-center:before {
    content: "\e948";
}

.pi-align-justify:before {
    content: "\e949";
}

.pi-cog:before {
    content: "\e94a";
}

.pi-cloud-download:before {
    content: "\e943";
}

.pi-cloud-upload:before {
    content: "\e944";
}

.pi-cloud:before {
    content: "\e945";
}

.pi-pencil:before {
    content: "\e942";
}

.pi-users:before {
    content: "\e941";
}

.pi-clock:before {
    content: "\e940";
}

.pi-user-minus:before {
    content: "\e93e";
}

.pi-user-plus:before {
    content: "\e93f";
}

.pi-trash:before {
    content: "\e93d";
}

.pi-external-link:before {
    content: "\e93c";
}

.pi-window-maximize:before {
    content: "\e93b";
}

.pi-window-minimize:before {
    content: "\e93a";
}

.pi-refresh:before {
    content: "\e938";
}
  
.pi-user:before {
    content: "\e939";
}

.pi-exclamation-triangle:before {
    content: "\e922";
}

.pi-calendar:before {
    content: "\e927";
}

.pi-chevron-circle-left:before {
    content: "\e928";
}

.pi-chevron-circle-down:before {
    content: "\e929";
}

.pi-chevron-circle-right:before {
    content: "\e92a";
}

.pi-chevron-circle-up:before {
    content: "\e92b";
}

.pi-angle-double-down:before {
    content: "\e92c";
}

.pi-angle-double-left:before {
    content: "\e92d";
}

.pi-angle-double-right:before {
    content: "\e92e";
}

.pi-angle-double-up:before {
    content: "\e92f";
}

.pi-angle-down:before {
    content: "\e930";
}

.pi-angle-left:before {
    content: "\e931";
}

.pi-angle-right:before {
    content: "\e932";
}

.pi-angle-up:before {
    content: "\e933";
}

.pi-upload:before {
    content: "\e934";
}

.pi-download:before {
    content: "\e956";
}

.pi-ban:before {
    content: "\e935";
}

.pi-star-fill:before {
    content: "\e936";
}

.pi-star:before {
    content: "\e937";
}

.pi-chevron-left:before {
    content: "\e900";
}

.pi-chevron-right:before {
    content: "\e901";
}

.pi-chevron-down:before {
    content: "\e902";
}

.pi-chevron-up:before {
    content: "\e903";
}

.pi-caret-left:before {
    content: "\e904";
}

.pi-caret-right:before {
    content: "\e905";
}

.pi-caret-down:before {
    content: "\e906";
}

.pi-caret-up:before {
    content: "\e907";
}

.pi-search:before {
    content: "\e908";
}

.pi-check:before {
    content: "\e909";
}

.pi-check-circle:before {
    content: "\e90a";
}

.pi-times:before {
    content: "\e90b";
}

.pi-times-circle:before {
    content: "\e90c";
}

.pi-plus:before {
    content: "\e90d";
}

.pi-plus-circle:before {
    content: "\e90e";
}

.pi-minus:before {
    content: "\e90f";
}

.pi-minus-circle:before {
    content: "\e910";
}

.pi-circle-on:before {
    content: "\e911";
}

.pi-circle-off:before {
    content: "\e912";
}

.pi-sort-down:before {
    content: "\e913";
}

.pi-sort-up:before {
    content: "\e914";
}

.pi-sort:before {
    content: "\e915";
}

.pi-step-backward:before {
    content: "\e916";
}

.pi-step-forward:before {
    content: "\e917";
}

.pi-th-large:before {
    content: "\e918";
}

.pi-arrow-down:before {
    content: "\e919";
}

.pi-arrow-left:before {
    content: "\e91a";
}

.pi-arrow-right:before {
    content: "\e91b";
}

.pi-arrow-up:before {
    content: "\e91c";
}

.pi-bars:before {
    content: "\e91d";
}

.pi-arrow-circle-down:before {
    content: "\e91e";
}

.pi-arrow-circle-left:before {
    content: "\e91f";
}

.pi-arrow-circle-right:before {
    content: "\e920";
}

.pi-arrow-circle-up:before {
    content: "\e921";
}

.pi-info:before {
    content: "\e923";
}

.pi-info-circle:before {
    content: "\e924";
}

.pi-home:before {
    content: "\e925";
}

.pi-spinner:before {
    content: "\e926";
}
/* Register Fonts */

@font-face {
  font-family: exo;
  src: url('/assets/Exo-Regular-BcALvhhs.ttf') format('truetype');
}

* {
  font-family: exo;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: exo;
}

/* Ensure the app takes up the full height of the screen */
body,
html,
.app {
  height: 100%;
  /* no body scrollbar */
  overflow: hidden;
}

.main-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.inputHasChanged {
  background-color: #50c878;
  color: #50c878;
  transition: opacity 0.5s ease-in-out;
}

.just-updated-icon-updated {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  cursor: default;
}

.just-updated-icon-not-updated {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: default;
}

.row-is-dirty {
  /*background-color: #f7e0d1 ;*/
  color: rgb(212, 118, 55);
  border-width: 0px;
  background-color: rgba(212, 118, 55, 0.07);
}

.row-is-dirty:hover {
  background-color: rgba(212, 118, 55, 0.2);
}

.row-just-updated {
  /* pulse purple background transparency in and our 1 second */
  animation: pulse-background 2s forwards;
  background-color: rgba(149, 55, 212, 0);
}

.text-vertical {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform-origin: bottom left;
  transform: translateX(1.5rem) translateY(-0.5rem) rotate(-90deg);
  font-weight: 700;
}

/* pulse purple background transparency in and our 1 second */
@keyframes pulse-background {
  0% {
    background-color: rgba(149, 55, 212, 0);
  }
  50% {
    background-color: rgba(149, 55, 212, 0.75);
  }
  100% {
    background-color: rgba(149, 55, 212, 0);
  }
}

.row-is-deleted {
  /*background-color: #e6e6e6 ;*/
  color: rgb(133, 133, 133);
  border-width: 0px;
  text-decoration: line-through;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.just-updated-icon-updated {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.just-updated-icon-not-updated {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.invisible-zero-size {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

/* Buttons */

.button-table {
  background-color: var(--p-surface-100);
  color: var(--p-primary-700);
  border: 1px solid var(--p-surface-100);
  width: 2rem;
  height: 2rem;
  border-radius: calc(infinity * 1px);
}

.button-table:hover {
  background-color: var(--p-primary-300);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-300);
  transition:
    background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.button-table-action {
  background-color: var(--p-surface-100);
  color: var(--p-primary-700);
  border: 1px solid var(--p-surface-100);
}

.button-table-action:hover {
  background-color: var(--p-primary-300);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-300);
}

.button-table-dirty {
  background-color: var(--p-dirty-100);
  color: var(--p-dirty-700);
  border: 1px solid var(--p-dirty-100);
}

.button-table-dirty:hover {
  background-color: var(--p-dirty-300);
  color: var(--p-dirty-800);
  border: 1px solid var(--p-dirty-300);
}

.button-table-save {
  background-color: var(--p-dirty-100);
  color: var(--p-dirty-700);
  border: 1px solid var(--p-dirty-100);
  animation: smallpulse 2s infinite;
}

/* Dialog Buttons */

.button-dialog-send {
  background-color: var(--p-primary-300);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-300);
  animation: smallpulse 2s infinite;
}

.button-dialog-send:hover {
  background-color: var(--p-primary-500);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-500);
}

.button-dialog-send:active {
  background-color: var(--p-primary-300);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-300);
}

.border-dialog-send:disabled,
.border-dialog-send[disabled] {
  background-color: var(--p-warning-200);
  color: var(--p-w-700);
  border: 1px solid var(--p-surface-200);
  animation: none;
}

.button-dialog-cancel {
  background-color: var(--p-surface-200);
  color: var(--p-w-700);
  border: 1px solid var(--p-surface-200);
}

.button-dialog-cancel:hover {
  background-color: var(--p-surface-300);
  color: var(--p-w-800);
  border: 1px solid var(--p-surface-300);
}

/* style when mouse down on cancel button */
.button-dialog-cancel:active {
  background-color: var(--p-warning-300);
  color: var(--p-w-800);
  border: 1px solid var(--p-warning-300);
}

@keyframes smallpulse {
  0% {
    opacity: 1;
    box-shadow: 0px 0px 7px var(--p-surface-300);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.99);
    box-shadow: 0px 0px 0px var(--p-surface-300);
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 7px var(--p-surface-300);
  }
}

.button-table-save:hover {
  background-color: var(--p-dirty-300);
  color: var(--p-dirty-800);
  border: 1px solid var(--p-dirty-300);
}

.button-labelled {
  width: auto;
}

.button-approve {
  background-color: var(--p-primary-200);
  color: var(--p-primary-900);
  border: 1px solid var(--p-primary-300);
}
.button-approve:hover {
  background-color: var(--p-primary-400);
  border: 1px solid var(--p-primary-400);
  color: var(--p-primary-50);
}

.button-block {
  background-color: var(--p-danger-200);
  color: var(--p-danger-900);
  border: 1px solid var(--p-danger-300);
}
.button-block:hover {
  background-color: var(--p-danger-400);
  color: var(--p-danger-50);
  border: 1px solid var(--p-danger-400);
  transform: scale(1.03);
  transition: transform 0.1s ease-in-out;
}

.button-block-outline {
  background-color: transparent;
  color: var(--p-danger-700);
  border: 1px solid var(--p-danger-400);
}
.button-block-outline:hover {
  background-color: var(--p-danger-100);
  color: var(--p-danger-800);
  border: 1px solid var(--p-danger-400);
  transform: scale(1.03);
  transition: transform 0.1s ease-in-out;
}

.button-details {
  background-color: var(--p-surface-50);
  color: var(--p-surface-700);
  border: 1px solid var(--p-surface-400);
}

.button-details:hover {
  background-color: var(--p-surface-400);
  color: var(--p-surface-50);
  border: 1px solid var(--p-surface-400);
  /* grow slightly */
  transform: scale(1.03);
  transition: transform 0.1s ease-in-out;
}

.button-standard {
  background-color: var(--p-primary-100);
  color: var(--p-primary-700);
  border: 1px solid var(--p-primary-200);
}

.button-standard:hover {
  background-color: var(--p-primary-200);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-300);
}

/* Cell Display */

.cell-display-cancelled {
  text-decoration: line-through;
  background-color: var(--p-danger-100);
  color: var(--p-danger-700);
}

/* Icons */

.icon-active {
  color: var(--p-primary-300);
}

.icon-active:hover {
  color: var(--p-primary-600);
}

.icon-inactive {
  color: var(--p-inactive-300);
}

.icon-inactive:hover {
  color: var(--p-inactive-500);
}

.icon-regular {
  color: var(--p-surface-400);
}

.icon-regular:hover {
  color: var(--p-surface-800);
}

.icon-dirty {
  color: var(--p-dirty-300);
}

.icon-dirty:hover {
  color: var(--p-dirty-500);
}

.icon-site-specific {
  color: var(--p-tweaked-400);
}

.icon-site-specific:hover {
  color: var(--p-tweaked-700);
}

.icon-danger {
  color: var(--p-warning-300);
}

.icon-danger:hover {
  color: var(--p-warning-500);
}

.icon-success {
  color: var(--p-primary-300);
}

.icon-success:hover {
  color: var(--p-primary-500);
}

.icon-modifier {
  border: 1px solid;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 1000;
  padding-top: 0.15rem;
  padding-right: 0.01rem;
}

.icon-help {
  color: var(--p-surface-300);
}

.icon-help:hover {
  color: var(--p-primary-500);
  /* grow to twice size, about the center */
  /* ease in and out */
  transform: scale(1.2);
  transition: transform 0.05s ease-in-out;
  transform-origin: center;
}

.icon-invalid {
  color: var(--p-warning-300);
  animation: redPulse 2s infinite;
}

/* animation with appearing and disappearing dropshadow */
@keyframes redPulse {
  0% {
    box-shadow: 0px 0px 7px var(--p-warning-300);
  }
  50% {
    box-shadow: 0px 0px 0px var(--p-warning-300);
  }
  100% {
    box-shadow: 0px 0px 7px var(--p-warning-300);
  }
}

.icon-invalid:hover {
  color: var(--p-warning-500);
}

/* for safari browsers */

_::-webkit-full-page-media,
_:future,
:root .icon-modifier {
  padding-top: 0rem;
  padding-right: 0rem;
}

.icon-modifier-regular {
  color: var(--p-surface-400);
  border-color: var(--p-surface-400);
}

.icon-modifier-regular:hover {
  color: var(--p-surface-800);
  border-color: var(--p-surface-800);
}

.icon-modifier-inactive {
  color: var(--p-inactive-300);
  border-color: var(--p-inactive-300);
}

.icon-modifier-inactive:hover {
  color: var(--p-inactive-500);
  border-color: var(--p-inactive-500);
}

.icon-modifier-active {
  color: var(--p-primary-300);
  border-color: var(--p-primary-300);
}

.icon-modifier-active:hover {
  color: var(--p-primary-500);
  border-color: var(--p-primary-500);
}

.icon-modifier-site-specific {
  color: var(--p-tweaked-400);
  border-color: var(--p-tweaked-400);
}

.icon-modifier-site-specific:hover {
  color: var(--p-tweaked-700);
  border-color: var(--p-tweaked-700);
}

.icon-modifier-multi-site {
  color: var(--p-primary-400);
  border-color: var(--p-primary-400);
}

.icon-modifier-multi-site:hover {
  color: var(--p-primary-700);
  border-color: var(--p-primary-700);
}

.icon-modifier-dirty {
  color: var(--p-dirty-400);
  border-color: var(--p-dirty-400);
}

.icon-modifier-dirty:hover {
  color: var(--p-dirty-700);
  border-color: var(--p-dirty-700);
}

/* Downloading Icon */

.icon-downloading {
  color: var(--p-warning-300);
  animation: pulse 2s infinite;
}

.icon-downloading:hover {
  color: var(--p-warning-500);
}

.icon-success {
  color: var(--p-surface-600);
}

.icon-success:hover {
  color: var(--p-surface-500);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Inputs */

input,
textarea {
  background-color: var(--p-surface-0);
  border: 1px solid var(--p-surface-300);
  border-radius: 0.25rem;
  color: var(--p-surface-900);
}

.input-mimic {
  background-color: var(--p-surface-0);
  border: 1px solid var(--p-surface-300);
  border-radius: 0.25rem;
  width: 100%;
  padding-left: 8px;
  padding-top: 1px;
  padding-bottom: 1px;
  min-height: 1.75rem;
}

.input-dirty {
  background-color: var(--p-dirty-50);
  color: var(--p-dirty-900);
}

.input-dirty:hover {
  background-color: var(--p-dirty-100);
  color: var(--p-dirty-800);
}

.input-site-specific {
  background-color: var(--p-tweaked-50);
  color: var(--p-tweaked-900);
}

.input-site-specific:hover {
  background-color: var(--p-tweaked-100);
  color: var(--p-tweaked-800);
}

.input-span-width {
  width: 100%;
}

.input-invalid {
  background-color: var(--p-warning-200);
  color: var(--p-warning-700);
}

.input-invalid:hover {
  background-color: var(--p-warning-100);
  color: var(--p-warning-700);
}

/* Badges */

.badge-flag {
  font-size: 0.6rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.05rem;
  padding-bottom: 0.05rem;
  margin-top: 0.2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--p-danger-300);
  background-color: var(--p-danger-300);
  color: var(--p-surface-50);
  cursor: help;
  white-space: nowrap;
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-site-specific {
  background-color: var(--p-tweaked-400);
}

.badge-site-specific:hover {
  background-color: var(--p-tweaked-500);
}

.badge-multi-site {
  background-color: var(--p-primary-400);
}

.badge-multi-site:hover {
  background-color: var(--p-primary-500);
}

.badge-dirty {
  background-color: var(--p-dirty-400);
}

.badge-dirty:hover {
  background-color: var(--p-dirty-500);
}

.badge-active {
  background-color: var(--p-primary-300);
}

.badge-active:hover {
  background-color: var(--p-primary-500);
}

.badge-inactive {
  background-color: var(--p-inactive-300);
}

.badge-inactive:hover {
  background-color: var(--p-inactive-500);
}

.badge-invalid {
  background-color: var(--p-warning-300);
}

.badge-invalid:hover {
  background-color: var(--p-warning-500);
}

/* Status Badges */

.badge-status {
  width: 80px;
  height: 20px;
  background-color: var(--inner-bg);
  color: var(--text-cl);
  box-shadow: 0px 2px 4px hsl(0 0% 0% / 25%);
}

.badge-status:hover {
  background-color: color-mix(in srgb, var(--inner-bg) 90%, black);
}

.badge-status-pending {
  --border-angle: 0deg;
  --inner-bg: #afafaf;
  --text-cl: #000000;
  animation: border-angle-rotate 4s infinite linear;
  border: 2.5px solid transparent;

  background:
    linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box,
    conic-gradient(from var(--border-angle), var(--inner-bg) 50%, white)
      border-box;
}

@keyframes border-angle-rotate {
  from {
    --border-angle: 0deg;
  }
  to {
    --border-angle: 360deg;
  }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.badge-status-draft {
  --inner-bg: #f7e0d1;
  --text-cl: #d47637;
}

.badge-status-placed {
  --inner-bg: #81bfdb;
  --text-cl: #ffffff;
}
.badge-status-part_delivered {
  --inner-bg: #bbf098;
  --text-cl: #ffffff;
}
.badge-status-delivered {
  --inner-bg: #4caf50;
  --text-cl: #ffffff;
}
.badge-status-credit_outstanding {
  --inner-bg: #e0715e;
  --text-cl: #ffffff;
}

.badge-status-finalised {
  --inner-bg: #333333;
  --text-cl: #ffffff;
}

.badge-status-cancelled {
  --inner-bg: #9b8f8f;
  --text-cl: #ffffff;
}

/* Notification Empty State */

.notification-empty-state-icon {
  font-size: 1.1rem;
  color: var(--p-surface-200);
  padding-bottom: 0.5rem;
}

.notification-empty-state {
  font-size: 1.1rem;
  color: var(--p-surface-500);
}

/* Warning Styles */

.card-square {
  border-radius: 0;
}

.card-multi-site {
  background-color: var(--p-primary-100);
  color: var(--p-primary-500);
}

.button-multi-site {
  background-color: var(--p-primary-200);
  color: var(--p-primary-700);
  border: 1px solid var(--p-primary-300);
}

.button-multi-site:hover {
  background-color: var(--p-primary-300);
  color: var(--p-primary-800);
  border: 1px solid var(--p-primary-400);
}

.card-site-specific {
  background-color: var(--p-tweaked-50);
  color: var(--p-tweaked-900);
}

.card-info {
  background-color: var(--p-primary-50);
  color: var(--p-primary-700);
}

.card-info:hover {
  background-color: var(--p-primary-100);
  color: var(--p-primary-800);
}

.card-warning {
  background-color: var(--p-warning-50);
  color: var(--p-warning-700);
}

.card-warning:hover {
  background-color: var(--p-warning-100);
  color: var(--p-warning-800);
}

.card-danger {
  background-color: var(--p-warning-50);
  color: var(--p-warning-700);
}

.card-danger:hover {
  background-color: var(--p-warning-100);
  color: var(--p-warning-800);
}

.card-help {
  background-color: var(--p-primary-50);
  color: var(--p-primary-700);
}

.card-help:hover {
  background-color: var(--p-primary-100);
  color: var(--p-primary-800);
}

.button-site-specific {
  background-color: var(--p-tweaked-200);
  color: var(--p-tweaked-700);
  border: 1px solid var(--p-tweaked-300);
}

.button-site-specific:hover {
  background-color: var(--p-tweaked-300);
  color: var(--p-tweaked-800);
  border: 1px solid var(--p-tweaked-400);
}

.warning-card {
  background-color: var(--p-warning-100);
  color: var(--p-warning-500);
}

.warning-button {
  background-color: var(--p-warning-200);
  color: var(--p-warning-700);
  border: 1px solid var(--p-warning-300);
}

.warning-button:hover {
  background-color: var(--p-warning-300);
  color: var(--p-warning-800);
  border: 1px solid var(--p-warning-400);
}

/* Other Styles */

.toggle-switch-background {
  background-color: var(--p-surface-100);
}

@media (prefers-color-scheme: dark) {
  .toggle-switch-background {
    background-color: var(--p-surface-950);
  }
}
/* Invisible Object */
.invisible {
  opacity: 0;
}

/* Floating Vue (Tooltips) */

.tooltip-help {
  /* appear with an animation */
  animation: fadeIn 0.3s ease-in-out;
  /* disappear with an animation */
  animation: fadeOut 0.3s ease-in-out;
  /* background color */
  background-color: var(--p-help-50);
  /* border color */
  border-color: var(--p-help-100);
  /* text color */
  color: var(--p-help-700);
  padding: 0.5rem;
}

/* remove Dirty */
.v-popper--theme-removeDirty .v-popper__inner {
  background: var(--p-dirty-50);
  color: var(--p-dirty-900);
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border-radius: 0.5rem;
}

.v-popper--theme-removeDirty .v-popper__arrow-outer {
  border-color: var(--p-dirty-50);
}

.v-popper--theme-removeDirty:hover .v-popper__inner {
  background: var(--p-dirty-100);
}

.v-popper--theme-removeDirty:hover .v-popper__arrow-outer {
  border-color: var(--p-dirty-100);
}

/* removeOveride */
.v-popper--theme-removeOveride .v-popper__inner {
  background: var(--p-tweaked-300);
  color: var(--p-surface-50);
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border-radius: 0.5rem;
}

.v-popper--theme-removeOveride .v-popper__arrow-outer {
  border-color: var(--p-tweaked-300);
}

.v-popper--theme-removeOveride:hover .v-popper__inner {
  background: var(--p-tweaked-400);
}

.v-popper--theme-removeOveride:hover .v-popper__arrow-outer {
  border-color: var(--p-tweaked-400);
}

/* help */

.v-popper--theme-help .v-popper__inner {
  background: var(--p-primary-50);
  color: var(--p-primary-700);
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border-radius: 0.5rem;
}

.v-popper--theme-help .v-popper__arrow-outer {
  border-color: var(--p-primary-50);
}

.v-popper--theme-help:hover .v-popper__inner {
  background: var(--p-primary-100);
}

.v-popper--theme-help:hover .v-popper__arrow-outer {
  border-color: var(--p-primary-100);
}

/* error */

.v-popper--theme-error .v-popper__inner {
  background: var(--p-warning-50);
  color: var(--p-warning-700);
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  border-radius: 0.5rem;
}

.v-popper--theme-error .v-popper__arrow-outer {
  border-color: var(--p-warning-50);
}

.v-popper--theme-error:hover .v-popper__inner {
  background: var(--p-warning-100);
}

.v-popper--theme-error:hover .v-popper__arrow-outer {
  border-color: var(--p-warning-100);
}

/* noArrow */
.v-popper--theme-noArrow .v-popper__inner {
  background: #ffffff;
  color: #000000;
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0rem;
}

.v-popper--theme-noArrow .v-popper__arrow-outer {
  visibility: hidden;
}

.v-popper--theme-noArrow .v-popper__arrow-inner {
  visibility: hidden;
}

.dark .v-popper--theme-noArrow .v-popper__inner {
  background: #000000;
  visibility: visible;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
  padding: 0.1rem 0.5rem 0.1rem 0rem;
}

.dark .v-popper--theme-noArrow .v-popper__arrow-outer {
  border-color: #000000;
}

/* Driver.js Styles */

.driver-popover.walkthrough-theme {
  background-color: var(--p-brand-500);
  font-family: exo;
  color: #ffffff;
}

.driver-popover.walkthrough-theme .driver-popover-title {
  font-size: 20px;
}

.driver-popover.walkthrough-theme .driver-popover-title,
.driver-popover.walkthrough-theme .driver-popover-description,
.driver-popover.walkthrough-theme .driver-popover-progress-text,
.driver-popover.walkthrough-theme .driver-popover-close-btn {
  color: #ffffff !important;
  font-family: exo;
}

.driver-popover.walkthrough-theme .driver-popover-footer {
  display: flex;
  gap: 2rem;
}

.driver-popover.walkthrough-theme .driver-popover-close-btn {
  /* round button with icon only, same as primary but round with icon only */
  color: var(--p-surface-0);
  font-size: 1.5rem;
  border: none;
  background: none;
  box-shadow: 0 0 0 0;
  width: 1rem;
  height: 1rem;
}

.driver-popover.walkthrough-theme button {
  font-family: exo;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  min-height: 2rem;
  /* primary */
  background: var(--p-primary-500);
  border: 2px solid var(--p-surface-0);
  color: var(--p-surface-0);
}

.driver-popover.walkthrough-theme button:hover {
  background: linear-gradient(
    135deg,
    var(--p-primary-600),
    var(--p-primary-700)
  );
  box-shadow: 0 6px 20px var(--p-surface-400);
  transform: translateY(-2px);
}

.driver-popover.walkthrough-theme .driver-popover-navigation-btns {
  justify-content: space-between;
  gap: 3px;
}

.driver-popover.walkthrough-theme .driver-popover-close-btn {
  color: #9b9b9b;
}

.driver-popover.walkthrough-theme .driver-popover-close-btn:hover {
  color: #000;
}

.driver-popover.walkthrough-theme
  .driver-popover-arrow-side-left.driver-popover-arrow {
  border-left-color: #fde047;
}

.driver-popover.walkthrough-theme
  .driver-popover-arrow-side-right.driver-popover-arrow {
  border-right-color: #fde047;
}

.driver-popover.walkthrough-theme
  .driver-popover-arrow-side-top.driver-popover-arrow {
  border-top-color: #fde047;
}

.driver-popover.walkthrough-theme
  .driver-popover-arrow-side-bottom.driver-popover-arrow {
  border-bottom-color: #fde047;
}

/* PrimeVue Overrides */

/* Semantic Colours

e.g. --p-surface-500

surface.xxx e.g. surface.50
primary.color, primary.contrastColor, primary.hoverColor, primary.activeColor
highlight.background, highlight.focusBackground, highlight,color, highlight.focusColor
mask.background, mask.color
formField. [..see node_modules\@primevue\themes\aura\index.mjs]
text.color, text.mutedColor, text.hoverColor, text.hoverMutedColor
content.background, content.hoverBackground, content.borderColour, content.color, content.hoverColor
overlay.select.[...], overlay.popover.[...], overlay.modal.[...]
list.[...]
navigation.[...]
*/

/* Reusable custom elements */

/* PrimeVue unstyled select / paginator rows-per-page dropdown */
[data-p='portal-body'][data-pc-section='overlay'] {
  background-color: var(--p-surface-0);
  border: 1px solid var(--p-surface-200);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 0.25rem 0;
}

[data-pc-section='listcontainer'] {
  max-height: 14rem;
  overflow-y: auto;
}

[data-pc-section='list'] {
  list-style: none;
  margin: 0;
  padding: 0;
}

[data-pc-section='option'] {
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--p-text-color);
  background-color: var(--p-surface-0);
}

[data-pc-section='option'][data-p-selected='true'] {
  background-color: var(--p-primary-50);
  color: var(--p-primary-700);
}

[data-pc-section='option']:not([data-p-disabled='true']):hover {
  background-color: var(--p-surface-100);
}

/* Focused option (keyboard navigation) */
[data-pc-section='option'][data-p-focused='true'] {
  outline: none;
  background-color: var(--p-primary-100);
  color: var(--p-primary-800);
}

/* Primevue input group */
.p-inputgroupaddon {
  background: var(--p-surface-0);
  color: var(--p-surface-950);
  border: 1px solid var(--p-surface-300);
}

/* Primevue select */
.p-select {
  background: var(--p-surface-0);
  color: var(--p-surface-950);
  border: 1px solid var(--p-surface-300);
}

.p-select-label {
  color: var(--p-surface-800);
}

.p-select-empty-message {
  color: var(--p-surface-500);
}

.p-select-option {
  color: var(--p-surface-950);
}

.p-select-option:hover {
  background-color: var(--p-surface-100);
}

/* dark mode popover */

@media (prefers-color-scheme: dark) {
  .p-popover {
    background-color: var(--p-surface-0);
    border: 1px solid var(--p-surface-300);
  }
  .p-popover-content {
    background-color: var(--p-surface-0);
    color: var(--p-surface-900);
    border: 1px solid var(--p-surface-500);
    box-shadow: none;
  }
  .p-popover::before {
    border-width: var(--p-popover-gutter);
    margin-left: calc(-1 * var(--p-popover-gutter));
    border-style: solid;
    border-color: transparent;
    border-bottom-color: var(--p-surface-100);
  }
}

/* Driver.js Overrides */

/* enable PrimeVue Select overlay while driver is active */
body.driver-active .p-select-overlay,
body.driver-active .p-select-overlay * {
  pointer-events: auto;
}

/* (optional) if you also need PrimeVue dialog mask clickable */
body.driver-active .p-dialog-mask,
body.driver-active .p-dialog-mask * {
  pointer-events: auto;
}

/* (optional) you’re using v-popper tooltips too */
body.driver-active .v-popper__popper,
body.driver-active .v-popper__popper * {
  pointer-events: auto;
}

body.driver-active .asset-card,
body.driver-active .asset-card * {
  pointer-events: auto;
}

/* === FROSTED / GLASS STYLES === */
/* These styles are applied when the .frosted class is present on App.vue or body */

.frosted {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

/* Ensure primeicons font is not overridden */
.frosted .pi,
.frosted [class^='pi-'],
.frosted [class*=' pi-'] {
  font-family: 'primeicons';
}

.frosted .p-dialog,
.frosted .standard-dialog {
  --blur: 25px;
  background: rgb(from var(--p-surface-0) r g b / 0.4);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.frosted .p-dialog-header,
.frosted .p-dialog-content,
.frosted .p-dialog-footer {
  background: transparent;
  border: none;
  color: var(--p-surface-900);
}

.frosted .p-dialog-header {
  border-bottom: 1px solid rgb(from var(--p-surface-200) r g b / 0.2);
}

.frosted .p-dialog-footer {
  border-top: 1px solid rgb(from var(--p-surface-200) r g b / 0.2);
}

/* Selects and Dropdowns */
.frosted .p-select,
.frosted .p-select-overlay,
.frosted .p-popover,
.frosted .p-datepicker,
.frosted .p-menu,
.frosted .p-tieredmenu,
.frosted .p-contextmenu,
.frosted [data-p='portal-body'][data-pc-section='overlay'] {
  --blur: 18px;
  background: rgb(from var(--p-surface-0) r g b / 0.6);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.frosted .p-select-option,
.frosted .p-menuitem-link {
  background: transparent;
  transition: background 0.2s ease;
  color: var(--p-surface-900);
}

.frosted .p-select-option:hover,
.frosted .p-menuitem-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.frosted .p-select-option.p-highlight,
.frosted .p-menuitem-link.p-highlight {
  background: rgb(from var(--p-primary-500) r g b / 0.2);
  color: var(--p-primary-700);
}

/* Inputs and Textareas */
.frosted input:not(.p-checkbox-input, .message-input),
.frosted textarea,
.frosted .input-mimic {
  background: rgb(from var(--p-frost-0) r g b / 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgb(from var(--p-frost-300) r g b / 0.3);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}

.frosted input.p-inputtext::placeholder,
.frosted textarea.p-inputtext::placeholder,
.frosted .input-mimic::placeholder {
  color: var(--p-frost-300) !important;
}

.frosted input:not(.message-input):focus,
.frosted textarea:focus {
  background: rgb(from var(--p-frost-0) r g b / 0.4);
  border-color: var(--p-primary-400);
  box-shadow: 0 0 0 2px rgb(from var(--p-primary-500) r g b / 0.1);
}

/* General Readability Enhancements */
.frosted h1,
.frosted h2,
.frosted h3,
.frosted .p-dialog-title {
  text-shadow: 0 1px 1px rgb(from var(--p-surface-0) r g b / 0.5);
  letter-spacing: -0.01em;
}

.frosted .button-table,
.frosted .button-table-action,
.frosted .button-standard,
.frosted .button-approve,
.frosted .button-block,
.frosted .button-details {
  --blur: 8px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgb(from var(--p-surface-0) r g b / 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.frosted .button-approve {
  background-color: rgb(from var(--p-primary-500) r g b / 0.3);
  color: var(--p-primary-800);
}

.frosted .button-block {
  background-color: rgb(from var(--p-danger-500) r g b / 0.3);
  color: var(--p-danger-800);
}

.frosted .button-standard {
  background-color: rgb(from var(--p-primary-100) r g b / 0.4);
  color: var(--p-primary-800);
}
.frosted .p-inputgroupaddon {
  background: rgb(from var(--p-frost-0) r g b / 0.2);
  border: 1px solid rgb(from var(--p-frost-400) r g b / 0.3);
  color: var(--p-frost-400);
}

/* User Message Frosted Styles */
.app-container.frosted .messages-container {
  background-color: transparent;
}

.app-container.frosted
  .message-item:not(.message-photo-paper, .message-sticker) {
  --blur: 5px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgb(from var(--p-surface-0) r g b / 0.65);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
}

.app-container.frosted
  .message-sent:not(.message-photo-paper, .message-sticker) {
  background-color: rgb(from var(--p-primary-200) r g b / 0.85);
  border-color: rgb(from var(--p-primary-0) r g b / 0.9);
}

.app-container.frosted .message-sent .message-content {
  color: var(--p-surface-900);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.app-container.frosted
  .message-received:not(.message-photo-paper, .message-sticker) {
  background-color: rgb(from var(--p-surface-0) r g b / 0.85);
  border-color: rgb(from var(--p-surface-0) r g b / 0.9);
}

.app-container.frosted .message-received .message-content {
  color: var(--p-surface-900);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.app-container.frosted .message-sender {
  color: var(--p-surface-900);
  font-weight: 600;
  width: 100%;
  text-align: left;
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  .app-container.frosted .message-sent .message-content {
    color: var(--p-surface-0);
  }
  .app-container.frosted .message-received .message-content {
    color: var(--p-surface-700);
  }
  /*sender*/
  .app-container.frosted .message-sender {
    color: var(--p-surface-950);
  }
}

/* Join/Leave, Unencryptable, and Special Message Frosted Styles */
.app-container.frosted .join-leave-pill,
.app-container.frosted .unencryptable-message-pill,
.app-container.frosted .archived-contact-content,
.app-container.frosted .contact-awaiting-approval-content,
.app-container.frosted .unknown-contact-content,
.app-container.frosted .date-pill {
  --blur: 5px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: var(--p-surface-900);
  opacity: 1;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.app-container.frosted .date-pill {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.no-avatar-image[data-v-87edb74f] {
    background-color: rgba(from var(--p-primary-500) r g b / 0.9);
    color: var(--p-primary-100);
    border: 2px solid rgba(from var(--p-primary-100) r g b / 1) !important;
}
@media (prefers-color-scheme: dark) {
.no-avatar-image[data-v-87edb74f] {
      background-color: rgba(from var(--p-surface-0) r g b / 1);
      color: var(--p-surface-700);
      border: 2px solid rgba(from var(--p-surface-400) r g b / 1) !important;
}
}
.avatar-container[data-v-87edb74f] {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0rem !important;
    margin: 0rem !important;
}
.avatar-with-border[data-v-87edb74f] {
    border: 2px solid var(--p-surface-0);
    transition: border-color 0.2s ease;
}

  /* Size-specific border thickness */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][data-v-87edb74f] {
    border-width: 2px;
}

  /* Large avatars get thicker borders */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][class*='large'][data-v-87edb74f] {
    border-width: 3px;
}

  /* XLarge avatars get even thicker borders */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][class*='xlarge'][data-v-87edb74f] {
    border-width: 4px;
}
.highlighted-avatar[data-v-87edb74f] {
    border-color: var(--p-primary-500) !important;
}
.loading-avatar[data-v-87edb74f] {
    opacity: 0.5;
}
.pulse-avatar[data-v-87edb74f] {
    animation: pulse-87edb74f 2s infinite;
}
@keyframes pulse-87edb74f {
0% {
      box-shadow: 0 0 0 0 var(--p-primary-500);
}
50% {
      box-shadow: 0 0 10px 10px var(--p-primary-500);
}
}
.progress-knob[data-v-87edb74f] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.avatar-ring-knob[data-v-87edb74f] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    pointer-events: none;
}
.avatar-ring-knob[data-v-87edb74f] .p-knob-text {
    display: none;
}
.avatar-box[data-v-87edb74f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.avatar-handle[data-v-87edb74f] {
    font-size: 0.75rem;
    text-align: center;
    color: var(--p-surface-900) !important;
    font-weight: 500;
    max-width: 4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
[data-v-87edb74f] .avatar-icon-overlay {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--p-surface-0);
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
[data-v-87edb74f] .avatar-icon-overlay:hover {
    transform: scale(1.1);
}

  /* Dark mode support */
@media (prefers-color-scheme: dark) {
.avatar-with-border[data-v-87edb74f] {
      border-color: var(--p-surface-700);
}
.highlighted-avatar[data-v-87edb74f] {
      border-color: var(--p-primary-400) !important;
}
.avatar-icon-overlay[data-v-87edb74f] {
      border-color: var(--p-surface-700);
}
}

.incoming-call-overlay[data-v-a232fea3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.status-bar-spacer[data-v-a232fea3] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    flex-shrink: 0;
}
.incoming-call-container[data-v-a232fea3] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.call-background[data-v-a232fea3] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #505050 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem 2rem;
    position: relative;
}
.call-background[data-v-a232fea3]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.caller-info[data-v-a232fea3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    flex: 1;
    justify-content: center;
}
.caller-avatar-container[data-v-a232fea3] {
    position: relative;
    margin-bottom: 2rem;
}
.caller-avatar[data-v-a232fea3] {
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}
.pulse-ring[data-v-a232fea3] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse-a232fea3 2s ease-out infinite;
}
.pulse-ring-delayed[data-v-a232fea3] {
    animation-delay: 1s;
}
@keyframes pulse-a232fea3 {
0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 1;
}
100% {
      transform: translate(-50%, -50%) scale(1.3);
      opacity: 0;
}
}
.caller-details[data-v-a232fea3] {
    color: white;
}
.caller-name[data-v-a232fea3] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.call-type[data-v-a232fea3] {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    opacity: 0.9;
}
.chat-name[data-v-a232fea3] {
    font-size: 1rem;
    margin: 0 0 0.25rem;
    opacity: 0.8;
    font-style: italic;
}
.participant-count[data-v-a232fea3] {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}
.call-actions[data-v-a232fea3] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 1;
    margin-bottom: 2rem;
}
.decline-button[data-v-a232fea3],
  .accept-button[data-v-a232fea3] {
    width: 80px !important;
    height: 80px !important;
    font-size: 1.5rem !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}
.decline-button[data-v-a232fea3] {
    background: #dc3545 !important;
    transform: rotate(135deg);
}
.decline-button[data-v-a232fea3]:hover {
    background: #c82333 !important;
    transform: rotate(135deg) scale(1.1) !important;
}
.accept-button[data-v-a232fea3] {
    background: #28a745 !important;
}
.accept-button[data-v-a232fea3]:hover {
    background: #218838 !important;
    transform: scale(1.1) !important;
}
.call-footer[data-v-a232fea3] {
    z-index: 1;
    color: white;
    text-align: center;
}
.call-time[data-v-a232fea3] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

  /* Mobile responsiveness */
@media (max-width: 640px) {
.call-background[data-v-a232fea3] {
      padding: 2rem 1rem 1.5rem;
}
.caller-name[data-v-a232fea3] {
      font-size: 1.5rem;
}
.call-actions[data-v-a232fea3] {
      gap: 3rem;
}
.decline-button[data-v-a232fea3],
    .accept-button[data-v-a232fea3] {
      width: 70px !important;
      height: 70px !important;
      font-size: 1.3rem !important;
}
}

.standard-dialog {
    border-radius: 1rem !important;
    overflow: hidden !important;
    /* Use surface tokens so elevation works in both light and dark modes */
    background-color: var(--p-surface-0) !important;
    color: var(--p-surface-900) !important;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1) !important;
}

  /* Default size styling is handled through computed style props */
.standard-dialog :deep(.p-dialog-header) {
    padding: 1rem 1.5rem !important;
    background-color: var(--p-surface-0) !important;
    color: var(--p-surface-900) !important;
    border-bottom: 1px solid var(--p-surface-200) !important;
}
.standard-dialog :deep(.p-dialog-content) {
    padding: 1.5rem !important;
    background-color: var(--p-surface-0) !important;
    color: var(--p-surface-900) !important;
}

  /* Ensure form inputs inside dialogs use consistent full-width layout */
.standard-dialog :deep(.p-dialog-footer) {
    padding: 1rem 1.5rem !important;
    background-color: var(--p-surface-0) !important;
    color: var(--p-surface-900) !important;
    border-top: 1px solid var(--p-surface-200) !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
}
.standard-dialog-container {
    /* scrollable */
    overflow-y: auto !important;
    min-height: 1% !important;
}

.toggle-icon[data-v-5bcd29c1] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.base-icon[data-v-5bcd29c1] {
    color: inherit;
    transition: all 0.2s ease;
}

  /* Size variants */
.icon-small[data-v-5bcd29c1] {
    font-size: 0.75rem;
    width: 1rem;
    height: 1rem;
}
.icon-medium[data-v-5bcd29c1] {
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
}
.icon-large[data-v-5bcd29c1] {
    font-size: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
}
.icon-xlarge[data-v-5bcd29c1] {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
}

  /* Slash overlay */
.slash-overlay[data-v-5bcd29c1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.slash-line[data-v-5bcd29c1] {
    width: 120%;
    height: 2px;
    background-color: currentColor;
    transform: rotate(-45deg);
    border-radius: 1px;
    opacity: 0.9;
}

  /* Responsive slash line thickness based on icon size */
.icon-small .slash-line[data-v-5bcd29c1] {
    height: 1.5px;
    width: 110%;
}
.icon-medium .slash-line[data-v-5bcd29c1] {
    height: 2px;
    width: 120%;
}
.icon-large .slash-line[data-v-5bcd29c1] {
    height: 2.5px;
    width: 125%;
}
.icon-xlarge .slash-line[data-v-5bcd29c1] {
    height: 3px;
    width: 130%;
}

  /* Animation for slash appearing/disappearing */
.slash-overlay[data-v-5bcd29c1] {
    animation: slashFadeIn-5bcd29c1 0.15s ease-out;
}
@keyframes slashFadeIn-5bcd29c1 {
from {
      opacity: 0;
      transform: scale(0.8);
}
to {
      opacity: 1;
      transform: scale(1);
}
}

  /* Make slashed icon slightly dimmed */
.toggle-icon.slashed .base-icon[data-v-5bcd29c1] {
    opacity: 0.7;
}

.video-stream[data-v-269b9a09] {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent shrinking beyond bounds */
}
.video-element[data-v-269b9a09] {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Crop and center video content */
    object-position: center; /* Ensure centering */
    background: #000;
    display: block; /* Remove any inline spacing */
}
.video-element.video-moderation-blurred[data-v-269b9a09] {
    filter: blur(25px) saturate(0.85);
    transition: filter 0.18s linear;
}
.video-element.video-hidden[data-v-269b9a09] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
}

  /* Ensure video respects container bounds in all scenarios */
.video-element[data-v-269b9a09]:not(.video-hidden) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}
.local-stream .video-element[data-v-269b9a09]:not(.video-hidden) {
    transform: scaleX(-1);
    transform-origin: center;
}
.video-off-placeholder[data-v-269b9a09] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    overflow: hidden;
}
.avatar-placeholder[data-v-269b9a09] {
    transform: scale(1.5);
}

  /* User info overlay (top right) */
.user-info-overlay[data-v-269b9a09] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
}
.username-badge[data-v-269b9a09] {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.avatar-decision-debug[data-v-269b9a09] {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 12;
    margin: 0;
    max-width: min(92%, 24rem);
    max-height: 42%;
    overflow: auto;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
    font-size: 0.62rem;
    line-height: 1.15;
    pointer-events: none;
}
.moderation-overlay[data-v-269b9a09] {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}
.speech-metadata-overlay[data-v-269b9a09] {
    position: absolute;
    top: 4.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    width: min(92%, 34rem);
}
.speech-metadata-card[data-v-269b9a09] {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.5rem;
    padding: 0.35rem 0.55rem;
    backdrop-filter: blur(5px);
}
.speech-metadata-title[data-v-269b9a09] {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.18rem;
}
.speech-metadata-secondary[data-v-269b9a09] {
    font-size: 0.62rem;
    line-height: 1.1;
    opacity: 0.92;
    margin-bottom: 0.12rem;
}
.speech-metadata-meta[data-v-269b9a09] {
    font-size: 0.58rem;
    line-height: 1.05;
    opacity: 0.82;
}
.speech-metadata-extra[data-v-269b9a09] {
    margin-top: 0.1rem;
}
.safety-action-overlay[data-v-269b9a09] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
    width: min(92%, 28rem);
    display: flex;
    justify-content: center;
}
.safety-action-pill[data-v-269b9a09] {
    width: 100%;
    text-align: center;
    background: rgba(13, 13, 13, 0.82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    padding: 0.52rem 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.safety-action-title[data-v-269b9a09] {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
}
.safety-action-timer[data-v-269b9a09] {
    font-size: 0.76rem;
    line-height: 1.2;
    opacity: 0.92;
    margin-top: 0.12rem;
}
.safety-action-reason[data-v-269b9a09] {
    font-size: 0.72rem;
    line-height: 1.2;
    opacity: 0.9;
    margin-top: 0.1rem;
}
.moderation-badge[data-v-269b9a09] {
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}
.moderation-decision-line[data-v-269b9a09],
  .moderation-count-line[data-v-269b9a09] {
    font-size: 0.62rem;
    font-weight: 500;
    line-height: 1.05;
    margin-top: 0.15rem;
    text-align: center;
}
.moderation-safe[data-v-269b9a09] {
    background: rgba(34, 197, 94, 0.7);
    border-color: rgba(34, 197, 94, 0.45);
}
.moderation-sensitive[data-v-269b9a09] {
    background: rgba(239, 68, 68, 0.78);
    border-color: rgba(239, 68, 68, 0.55);
}
.moderation-checking[data-v-269b9a09] {
    background: rgba(245, 158, 11, 0.72);
    border-color: rgba(245, 158, 11, 0.45);
}
.moderation-stale[data-v-269b9a09] {
    background: rgba(107, 114, 128, 0.72);
    border-color: rgba(107, 114, 128, 0.45);
}
.moderation-error[data-v-269b9a09] {
    background: rgba(168, 85, 247, 0.74);
    border-color: rgba(168, 85, 247, 0.45);
}
.moderation-unsupported[data-v-269b9a09] {
    background: rgba(55, 65, 81, 0.74);
    border-color: rgba(107, 114, 128, 0.45);
}

  /* Audio controls area */
.audio-controls[data-v-269b9a09] {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

  /* Microphone status */
.mic-status[data-v-269b9a09] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    background: rgba(34, 197, 94, 0.8);
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.2s ease;
    opacity: 0.8;
}
.mic-status.mic-off[data-v-269b9a09] {
    background: rgba(239, 68, 68, 0.8);
    border-color: rgba(239, 68, 68, 0.3);
}

  /* Volume bar */
.volume-bar[data-v-269b9a09] {
    width: 0.25rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.125rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease;
}
.volume-bar[data-v-269b9a09]:not(.volume-active) {
    opacity: 0.5;
}
.volume-fill[data-v-269b9a09] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: height 0.1s ease;
    border-radius: 0.125rem;
}
.volume-green[data-v-269b9a09] {
    background: linear-gradient(to top, #22c55e, #16a34a);
}
.volume-yellow[data-v-269b9a09] {
    background: linear-gradient(to top, #eab308, #f59e0b);
}
.volume-red[data-v-269b9a09] {
    background: linear-gradient(to top, #ef4444, #dc2626);
}

  /* Connection status */
.connection-status[data-v-269b9a09] {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}
.status-connected[data-v-269b9a09] {
    color: #22c55e;
    opacity: 0.7;
}
.status-connecting[data-v-269b9a09] {
    color: #f59e0b;
    animation: pulse-269b9a09 2s infinite;
}
.status-error[data-v-269b9a09] {
    color: #ef4444;
}
.status-closed[data-v-269b9a09] {
    color: #6b7280;
}
.status-new[data-v-269b9a09] {
    color: #9ca3af;
}

  /* Quick status indicator */
.status-indicator[data-v-269b9a09] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
}
.status-badge[data-v-269b9a09] {
    padding: 0.125rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
}
.status-badge-connected[data-v-269b9a09] {
    background: rgba(34, 197, 94, 0.8);
    color: white;
    border-color: rgba(34, 197, 94, 0.3);
}
.status-badge-connecting[data-v-269b9a09] {
    background: rgba(251, 191, 36, 0.8);
    color: white;
    border-color: rgba(251, 191, 36, 0.3);
    animation: pulse-269b9a09 2s infinite;
}
.status-badge-error[data-v-269b9a09] {
    background: rgba(239, 68, 68, 0.8);
    color: white;
    border-color: rgba(239, 68, 68, 0.3);
}
.status-badge-disconnected[data-v-269b9a09] {
    background: rgba(107, 114, 128, 0.8);
    color: white;
    border-color: rgba(107, 114, 128, 0.3);
}
.status-badge-new[data-v-269b9a09] {
    background: rgba(156, 163, 175, 0.8);
    color: white;
    border-color: rgba(156, 163, 175, 0.3);
}
.status-text[data-v-269b9a09] {
    display: block;
}

  /* Loading overlay */
.loading-overlay[data-v-269b9a09] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 20;
}
.loading-spinner[data-v-269b9a09] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.loading-text[data-v-269b9a09] {
    font-size: 0.875rem;
    opacity: 0.8;
}

  /* Connection failed overlay */
.connection-failed-overlay[data-v-269b9a09] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 25;
    backdrop-filter: blur(4px);
}
.connection-failed-content[data-v-269b9a09] {
    text-align: center;
    padding: 1.5rem;
    max-width: 80%;
}
.failed-icon[data-v-269b9a09] {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
}
.failed-text[data-v-269b9a09] {
    margin-bottom: 1.5rem;
}
.failed-title[data-v-269b9a09] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ef4444;
}
.failed-subtitle[data-v-269b9a09] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}
.failed-error[data-v-269b9a09] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-top: 0.5rem;
}
.failed-actions[data-v-269b9a09] {
    display: flex;
    justify-content: center;
}
.retry-button[data-v-269b9a09] {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}
.retry-button[data-v-269b9a09]:hover {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

  /* Stream type specific styles */
.local-stream[data-v-269b9a09] {
    border: 2px solid rgba(59, 130, 246, 0.5);
}
.remote-stream[data-v-269b9a09] {
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.remote-stream[data-v-269b9a09]:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

  /* Debug toggle button */
.debug-toggle[data-v-269b9a09] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem; /* Position at the right edge */
    z-index: 15;
    width: 1.75rem !important;
    height: 1.75rem !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(4px);
}
.debug-toggle[data-v-269b9a09]:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

  /* Debug overlay */
.debug-overlay[data-v-269b9a09] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 20;
    overflow-y: auto;
    font-size: 0.75rem;
    font-family: monospace;
    line-height: 1.4;
}
.debug-header[data-v-269b9a09] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}
.debug-title[data-v-269b9a09] {
    font-weight: bold;
    color: #60a5fa;
    font-size: 0.875rem;
}
.debug-close[data-v-269b9a09] {
    width: 1.5rem !important;
    height: 1.5rem !important;
    color: white !important;
}
.debug-content[data-v-269b9a09] {
    padding: 0.75rem;
    max-height: calc(100% - 3rem);
    overflow-y: auto;
}
.debug-section[data-v-269b9a09] {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.debug-section[data-v-269b9a09]:last-child {
    margin-bottom: 0;
}
.debug-section.error-section[data-v-269b9a09] {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}
.debug-section-title[data-v-269b9a09] {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #60a5fa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.debug-item[data-v-269b9a09] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
}
.debug-item[data-v-269b9a09]:last-child {
    margin-bottom: 0;
}
.debug-item.error-text[data-v-269b9a09] {
    flex-direction: column;
    align-items: flex-start;
}
.debug-label[data-v-269b9a09] {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    min-width: fit-content;
}
.debug-value[data-v-269b9a09] {
    color: white;
    word-break: break-word;
    text-align: right;
}
.debug-value.status-value[data-v-269b9a09] {
    color: #34d399;
    font-weight: 500;
}
.error-text .debug-value[data-v-269b9a09] {
    color: #fca5a5;
    text-align: left;
    margin-top: 0.125rem;
    font-size: 0.7rem;
}

  /* Audio debug overlay specific styles */
.audio-debug-overlay[data-v-269b9a09] {
    background: rgba(16, 16, 16, 0.95);
}

  /* Peer status overlay */
.peer-status-overlay[data-v-269b9a09] {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 12;
    pointer-events: none;
    display: flex;
    justify-content: center;
}
.peer-status-chip[data-v-269b9a09] {
    max-width: 100%;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    text-align: center;
}
.peer-status-text[data-v-269b9a09] {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
    word-break: break-word;
}
.peer-status-detail[data-v-269b9a09] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    line-height: 1.1;
    word-break: break-word;
}
.connecting-pill[data-v-269b9a09] {
    max-width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    animation: pill-fade-in-269b9a09 0.3s ease;
}
.connecting-pill-icon[data-v-269b9a09] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}
.connecting-pill-text[data-v-269b9a09] {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes pill-fade-in-269b9a09 {
from {
      opacity: 0;
      transform: translateY(6px);
}
to {
      opacity: 1;
      transform: translateY(0);
}
}
.status-chip-connected[data-v-269b9a09] {
    border-color: rgba(34, 197, 94, 0.35);
}
.status-chip-connecting[data-v-269b9a09] {
    border-color: rgba(245, 158, 11, 0.35);
}
.status-chip-error[data-v-269b9a09] {
    border-color: rgba(239, 68, 68, 0.45);
}
.status-chip-local[data-v-269b9a09] {
    border-color: rgba(59, 130, 246, 0.35);
}
.status-chip-neutral[data-v-269b9a09] {
    border-color: rgba(156, 163, 175, 0.35);
}
.audio-debug-overlay .debug-title[data-v-269b9a09] {
    color: #10b981; /* Green for audio */
}
.audio-debug-overlay .debug-section-title[data-v-269b9a09] {
    color: #10b981;
}
.status-active[data-v-269b9a09] {
    color: #10b981 !important;
    font-weight: 600;
}
.gate-state[data-v-269b9a09] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
}
.gate-open[data-v-269b9a09] {
    color: #10b981; /* Green for open gate */
}
.gate-closed[data-v-269b9a09] {
    color: #ef4444; /* Red for closed gate */
}
.gate-unknown[data-v-269b9a09] {
    color: #f59e0b; /* Yellow for unknown state */
}

  /* DateTime debug styling */
.debug-datetime[data-v-269b9a09] {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem !important;
    color: #a3a3a3;
    word-break: break-all;
    line-height: 1.2;
}

  /* Animations */
@keyframes pulse-269b9a09 {
0%,
    100% {
      opacity: 1;
}
50% {
      opacity: 0.5;
}
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.user-info-overlay[data-v-269b9a09] {
      top: 0.5rem;
      right: 0.5rem;
}
.avatar-decision-debug[data-v-269b9a09] {
      left: 0.5rem;
      bottom: 0.5rem;
      max-width: 92%;
      font-size: 0.56rem;
}
.username-badge[data-v-269b9a09] {
      padding: 0.125rem 0.5rem;
      font-size: 0.75rem;
      max-width: 8rem;
      opacity: 0.8;
}
.audio-controls[data-v-269b9a09] {
      bottom: 0.5rem;
      left: 0.5rem;
      gap: 0.375rem;
}
.mic-status[data-v-269b9a09] {
      width: 1.75rem;
      height: 1.75rem;
      font-size: 0.75rem;
}
.volume-bar[data-v-269b9a09] {
      width: 0.2rem;
      height: 1.75rem;
}
.connection-status[data-v-269b9a09] {
      bottom: 0.5rem;
      right: 0.5rem;
      width: 1.25rem;
      height: 1.25rem;
      font-size: 0.625rem;
}
.loading-spinner[data-v-269b9a09] {
      font-size: 1.5rem;
}
.loading-text[data-v-269b9a09] {
      font-size: 0.75rem;
}

    /* Mobile status indicator */
.status-indicator[data-v-269b9a09] {
      top: 0.5rem;
      left: 0.5rem;
}
.status-badge[data-v-269b9a09] {
      padding: 0.1rem 0.375rem;
      font-size: 0.6rem;
}

    /* Mobile debug styles */
.debug-toggle[data-v-269b9a09] {
      top: 0.5rem;
      right: 0.5rem;
      width: 1.5rem !important;
      height: 1.5rem !important;
}
.debug-header[data-v-269b9a09] {
      padding: 0.5rem;
}
.debug-title[data-v-269b9a09] {
      font-size: 0.8rem;
}
.debug-content[data-v-269b9a09] {
      padding: 0.5rem;
      font-size: 0.7rem;
}
.debug-section[data-v-269b9a09] {
      margin-bottom: 0.75rem;
      padding: 0.375rem;
}
.debug-section-title[data-v-269b9a09] {
      font-size: 0.75rem;
      margin-bottom: 0.375rem;
}
.debug-item[data-v-269b9a09] {
      margin-bottom: 0.125rem;
      gap: 0.25rem;
}
.debug-label[data-v-269b9a09] {
      font-size: 0.65rem;
}
.debug-value[data-v-269b9a09] {
      font-size: 0.65rem;
}
.error-text .debug-value[data-v-269b9a09] {
      font-size: 0.6rem;
}

    /* Mobile connection failed overlay */
.connection-failed-content[data-v-269b9a09] {
      padding: 1rem;
      max-width: 90%;
}
.failed-icon[data-v-269b9a09] {
      font-size: 2rem;
      margin-bottom: 0.75rem;
}
.failed-title[data-v-269b9a09] {
      font-size: 1rem;
}
.failed-subtitle[data-v-269b9a09] {
      font-size: 0.8rem;
}
.failed-error[data-v-269b9a09] {
      font-size: 0.7rem;
      padding: 0.375rem;
}
}

.video-grid-container[data-v-2fc991d8] {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.primary-area[data-v-2fc991d8] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
}
.primary-video[data-v-2fc991d8] {
    width: 100%;
    height: 100%;
}
.waiting-local[data-v-2fc991d8] {
    position: relative;
}
.waiting-local[data-v-2fc991d8]::after {
    content: 'Preview - Waiting for participants...';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    pointer-events: none;
}
.no-speaker-placeholder[data-v-2fc991d8] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.placeholder-content[data-v-2fc991d8] {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.placeholder-icon[data-v-2fc991d8] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.placeholder-text[data-v-2fc991d8] {
    font-size: 1.125rem;
    font-weight: 500;
}
.placeholder-subtext[data-v-2fc991d8] {
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 0.25rem;
}
.secondary-area[data-v-2fc991d8] {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0.5rem;
    display: flex;
    gap: 0.5rem;

    flex-shrink: 0; /* Don't shrink the secondary area */
}
.secondary-video[data-v-2fc991d8] {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    min-width: 0; /* Allows flex items to shrink below content size */
}
.local-overlay[data-v-2fc991d8] {
    border: 2px solid rgba(59, 130, 246, 0.8);
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
}
.local-overlay.swap-enabled[data-v-2fc991d8] {
    cursor: pointer;
}
.local-video[data-v-2fc991d8] {
    width: 100%;
    height: 100%;
}

  /* Layout controls */
.layout-controls[data-v-2fc991d8] {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}
.control-button[data-v-2fc991d8] {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(4px);
}
.control-button[data-v-2fc991d8]:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

  /* Debug info */
.debug-info[data-v-2fc991d8] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-family: monospace;
    min-width: 200px;
    z-index: 100;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    max-height: 90%;
}
.debug-section[data-v-2fc991d8] {
    margin-bottom: 0.75rem;
    overflow-y: auto;
    height: 100%;
}
.debug-section[data-v-2fc991d8]:last-child {
    margin-bottom: 0;
}
.debug-title[data-v-2fc991d8] {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #60a5fa;
}
.debug-item[data-v-2fc991d8] {
    margin-bottom: 0.125rem;
}
.debug-item.error-item[data-v-2fc991d8] {
    color: #fca5a5;
}
.debug-label[data-v-2fc991d8] {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}
.debug-value[data-v-2fc991d8] {
    color: white;
}
.debug-value.status-connected[data-v-2fc991d8] {
    color: #34d399;
}
.debug-value.status-connecting[data-v-2fc991d8] {
    color: #fbbf24;
}
.debug-value.status-error[data-v-2fc991d8] {
    color: #f87171;
}
.debug-value.status-disconnected[data-v-2fc991d8] {
    color: #9ca3af;
}
.debug-value.status-waiting[data-v-2fc991d8] {
    color: #a78bfa;
}

  /* Signaling activity styles */
.signaling-peer[data-v-2fc991d8] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.peer-name[data-v-2fc991d8] {
    font-weight: 600;
    color: #60a5fa;
    font-size: 0.75rem;
}
.signaling-details[data-v-2fc991d8] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-left: 0.5rem;
}
.signaling-event[data-v-2fc991d8] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}
.track-pill[data-v-2fc991d8],
  .tr-pill[data-v-2fc991d8] {
    display: inline-block;
    padding: 0 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-right: 0.25rem;
    font-size: 0.65rem;
}
.track-muted[data-v-2fc991d8] {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

  /* Mobile specific styles */
.video-grid-container.mobile[data-v-2fc991d8] {
    flex-direction: column;
}
.video-grid-container.mobile .secondary-area[data-v-2fc991d8] {
    flex-direction: row;
    overflow-x: auto;
}
.video-grid-container.mobile .secondary-video[data-v-2fc991d8] {
    min-width: 120px;
    height: 100%;
    aspect-ratio: 16/9;
}
.video-grid-container.mobile .layout-controls[data-v-2fc991d8] {
    bottom: 0.5rem;
}
.video-grid-container.mobile .debug-info[data-v-2fc991d8] {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    min-width: auto;
}

  /* Desktop specific styles */
.video-grid-container.desktop[data-v-2fc991d8] {
    flex-direction: row;
}
.video-grid-container.desktop .secondary-area[data-v-2fc991d8] {
    flex-direction: column;
    overflow-y: auto;
}
.video-grid-container.desktop .secondary-video[data-v-2fc991d8] {
    width: 100%;
    aspect-ratio: 16/9;
    flex-shrink: 0;
}

  /* Responsive adjustments */
@media (max-width: 768px) {
.layout-controls[data-v-2fc991d8] {
      bottom: 0.5rem;
}
.control-button[data-v-2fc991d8] {
      width: 2.5rem !important;
      height: 2.5rem !important;
}
.placeholder-icon[data-v-2fc991d8] {
      font-size: 2rem;
}
.placeholder-text[data-v-2fc991d8] {
      font-size: 1rem;
}
.debug-info[data-v-2fc991d8] {
      font-size: 0.75rem;
      padding: 0.75rem;
      max-width: 90%;
}
.debug-section[data-v-2fc991d8] {
      margin-bottom: 0.75rem;
}
.debug-title[data-v-2fc991d8] {
      font-size: 0.8rem;
}
.debug-item[data-v-2fc991d8] {
      font-size: 0.7rem;
}
.waiting-local[data-v-2fc991d8]::after {
      font-size: 0.75rem;
      padding: 0.375rem 0.75rem;
      bottom: 0.75rem;
      max-width: 80%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
}
.placeholder-content[data-v-2fc991d8] {
      padding: 1rem;
}
.placeholder-icon[data-v-2fc991d8] {
      font-size: 2.5rem;
      margin-bottom: 0.75rem;
}
.placeholder-text[data-v-2fc991d8] {
      font-size: 1rem;
}
.placeholder-subtext[data-v-2fc991d8] {
      font-size: 0.8rem;
}
}
@media (max-width: 480px) {
.layout-controls[data-v-2fc991d8] {
      gap: 0.25rem;
}
.control-button[data-v-2fc991d8] {
      width: 2rem !important;
      height: 2rem !important;
}
}

  /* One-on-one layout: full screen primary with overlay */
.video-grid-container.one-on-one .primary-area[data-v-2fc991d8] {
    flex: 1;
    height: 100%;
}

  /* Group layout: primary resizes to accommodate secondaries */
.video-grid-container:not(.one-on-one) .primary-area[data-v-2fc991d8] {
    flex: 1;
    min-height: 0; /* Allow flex item to shrink */
}

  /* Mobile specific layout adjustments */
.video-grid-container.mobile:not(.one-on-one) .secondary-area[data-v-2fc991d8] {
    height: 30vh; /* Fixed height for mobile secondary area */
    max-height: 200px;
    min-height: 120px;
}

  /* Desktop specific layout adjustments */
.video-grid-container.desktop[data-v-2fc991d8]:not(.one-on-one) {
    flex-direction: row;
}
.video-grid-container.desktop:not(.one-on-one) .primary-area[data-v-2fc991d8] {
    flex: 1;
    width: 75%;
}
.video-grid-container.desktop:not(.one-on-one) .secondary-area[data-v-2fc991d8] {
    flex-direction: column;
    width: 25%;
    height: 100%;
    max-width: 300px;
    min-width: 200px;
}

.participants-strip[data-v-75d38abc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
.participants-list[data-v-75d38abc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.125rem;
    flex: 1;
}
.participant-avatar-button[data-v-75d38abc] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      opacity 0.2s ease;
}
.participant-avatar-content[data-v-75d38abc] {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    overflow: hidden;
}
.participant-avatar-content.muted[data-v-75d38abc] {
    filter: grayscale(1);
    opacity: 0.8;
}
.participant-avatar-button[data-v-75d38abc]:hover {
    transform: translateY(-1px);
}
.participant-avatar-button.connected[data-v-75d38abc] {
    opacity: 1;
}
.participant-avatar-button.connecting[data-v-75d38abc] {
    animation: avatar-connecting-opacity-75d38abc 1.6s ease-in-out infinite;
}
.participant-avatar-button.primary[data-v-75d38abc] {
    border-color: var(--p-primary-300);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.call-status-badge[data-v-75d38abc] {
    position: absolute;
    right: -0.25rem;
    bottom: -0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-status-badge i[data-v-75d38abc] {
    font-size: 0.5rem;
}
.call-status-badge.pending[data-v-75d38abc] {
    background: rgba(59, 130, 246, 0.95);
    animation: pending-call-pulse-75d38abc 1.4s ease-in-out infinite;
}
.call-status-badge.left[data-v-75d38abc],
  .call-status-badge.declined[data-v-75d38abc] {
    background: rgba(220, 53, 69, 0.95);
}
.mic-off-badge[data-v-75d38abc] {
    position: absolute;
    right: -0.25rem;
    bottom: -0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: rgba(220, 53, 69, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mic-off-badge[data-v-75d38abc] i.pi-microphone {
    position: absolute;
    font-size: 0.45rem;
    left: 0.16rem;
    top: 0.18rem;
}
.mic-off-badge[data-v-75d38abc] i.pi-times {
    position: absolute;
    font-size: 0.45rem;
    right: 0.16rem;
    bottom: 0.1rem;
}
.collapse-button[data-v-75d38abc] {
    color: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.22) !important;
    flex-shrink: 0;
}
.collapse-button[data-v-75d38abc]:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.12) !important;
}
@keyframes avatar-connecting-opacity-75d38abc {
0% {
      opacity: 0.5;
}
50% {
      opacity: 1;
}
100% {
      opacity: 0.5;
}
}
@keyframes pending-call-pulse-75d38abc {
0% {
      opacity: 0.6;
      transform: scale(0.95);
}
50% {
      opacity: 1;
      transform: scale(1);
}
100% {
      opacity: 0.6;
      transform: scale(0.95);
}
}

.call-initializing-overlay[data-v-44c00164] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.call-initializing-content[data-v-44c00164] {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.call-initializing-icon[data-v-44c00164] {
    margin-bottom: 1.5rem;
}
.call-initializing-title[data-v-44c00164] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}
.call-initializing-message[data-v-44c00164] {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 0;
    line-height: 1.6;
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.call-initializing-overlay[data-v-44c00164] {
      padding: 1rem;
}
.call-initializing-content[data-v-44c00164] {
      padding: 2rem;
}
.call-initializing-title[data-v-44c00164] {
      font-size: 1.25rem;
}
}

.call-window[data-v-9b4fa840] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}
.turn-magic-indicator[data-v-9b4fa840] {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 50;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--p-primary-200);
    pointer-events: auto; /* allow tooltip hover */
}
.turn-magic-indicator i[data-v-9b4fa840] {
    font-size: 1rem;
}
.call-window-header[data-v-9b4fa840] {
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}
.participants-bar-shell[data-v-9b4fa840] {
    overflow: hidden;
    max-height: 4.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      transform 0.24s ease,
      padding-top 0.24s ease;
    opacity: 1;
    transform: translateY(0);
}
.participants-bar-shell.collapsed[data-v-9b4fa840] {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    padding-top: 0;
}
.participants-reopen-button[data-v-9b4fa840] {
    position: absolute;
    top: 0.45rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.36);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease,
      opacity 0.2s ease;
}
.participants-reopen-button[data-v-9b4fa840]:hover {
    background: rgba(255, 255, 255, 0.22);
    color: white;
    transform: translateX(-50%) translateY(1px);
}
.participants-reopen-enter-active[data-v-9b4fa840],
  .participants-reopen-leave-active[data-v-9b4fa840] {
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
}
.participants-reopen-enter-from[data-v-9b4fa840],
  .participants-reopen-leave-to[data-v-9b4fa840] {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
}
.permission-warning[data-v-9b4fa840] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(251, 191, 36, 0.25);
    background: rgba(251, 191, 36, 0.12);
}
.permission-warning-left[data-v-9b4fa840] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.2;
}
.permission-warning-text[data-v-9b4fa840] {
    color: rgba(255, 255, 255, 0.9);
}
.permission-warning-actions[data-v-9b4fa840] {
    flex-shrink: 0;
}
.permission-help-button[data-v-9b4fa840] {
    background: rgba(251, 191, 36, 0.18) !important;
    border: 1px solid rgba(251, 191, 36, 0.35) !important;
    color: white !important;
}
.permission-help-button[data-v-9b4fa840]:hover {
    background: rgba(251, 191, 36, 0.26) !important;
    border: 1px solid rgba(251, 191, 36, 0.45) !important;
}
.stat-item[data-v-9b4fa840] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.stat-label[data-v-9b4fa840] {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.stat-value[data-v-9b4fa840] {
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}
.debug-button[data-v-9b4fa840] {
    padding: 0.25rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 0.25rem !important;
}
.debug-button[data-v-9b4fa840]:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}
.video-area[data-v-9b4fa840] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}
.connection-status-fade-enter-active[data-v-9b4fa840],
  .connection-status-fade-leave-active[data-v-9b4fa840] {
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
}
.connection-status-fade-enter-from[data-v-9b4fa840],
  .connection-status-fade-leave-to[data-v-9b4fa840] {
    opacity: 0;
    transform: translateY(-6px);
}
.local-moderation-debug-overlay[data-v-9b4fa840] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
    width: min(94vw, 54rem);
    pointer-events: none;
}
.local-moderation-debug-card[data-v-9b4fa840] {
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    color: white;
    backdrop-filter: blur(8px);
}
.local-moderation-debug-title[data-v-9b4fa840] {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}
.local-moderation-debug-line[data-v-9b4fa840] {
    font-size: 0.75rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
    word-break: break-word;
}
.video-placeholder[data-v-9b4fa840] {
    text-align: center;
    color: white;
    max-width: 600px;
}
.placeholder-title[data-v-9b4fa840] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}
.placeholder-subtitle[data-v-9b4fa840] {
    font-size: 1rem;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.7);
}
.props-display[data-v-9b4fa840] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}
.prop-item[data-v-9b4fa840] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.prop-item[data-v-9b4fa840]:last-child {
    border-bottom: none;
}
.prop-label[data-v-9b4fa840] {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}
.prop-value[data-v-9b4fa840] {
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

  /* Connection error overlay */
.error-overlay[data-v-9b4fa840] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.error-content[data-v-9b4fa840] {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}
.error-title[data-v-9b4fa840] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #ef4444;
}
.error-message[data-v-9b4fa840] {
    font-size: 1rem;
    margin: 0 0 2rem 0;
    opacity: 0.8;
}
.retry-button[data-v-9b4fa840] {
    background: #ef4444 !important;
    border: 1px solid #ef4444 !important;
}
.retry-button[data-v-9b4fa840]:hover {
    background: #dc2626 !important;
    border: 1px solid #dc2626 !important;
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.call-window-header[data-v-9b4fa840] {
      padding: 0 1rem;
}
.participants-bar-shell[data-v-9b4fa840] {
      max-height: 4rem;
      padding-top: 0.75rem;
}
.participants-bar-shell.collapsed[data-v-9b4fa840] {
      max-height: 0;
      padding-top: 0;
}
.participants-reopen-button[data-v-9b4fa840] {
      top: 0.35rem;
}
.video-area[data-v-9b4fa840] {
      padding: 0;
}
.error-content[data-v-9b4fa840] {
      padding: 1.5rem;
}
.error-title[data-v-9b4fa840] {
      font-size: 1.125rem;
}
}

  /* Connection status overlay */
.connection-status-overlay[data-v-9b4fa840] {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    pointer-events: none;
}
.connection-status[data-v-9b4fa840] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.connection-status span[data-v-9b4fa840] {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.connection-status.connected .status-icon[data-v-9b4fa840] {
    color: #28a745;
    text-shadow: 0 0 4px rgba(40, 167, 69, 0.5);
}
.connection-status.disconnected .status-icon[data-v-9b4fa840] {
    color: #dc3545;
    text-shadow: 0 0 4px rgba(220, 53, 69, 0.5);
}

  /* Beta dialog styling */
[data-v-9b4fa840] .standard-dialog.call-beta-dialog {
    overflow: visible !important;
}
.beta-card[data-v-9b4fa840] {
    position: relative;
    background: var(--p-warning-400);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem 1rem 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: visible !important;
    margin-top: 1rem;
}
.beta-pill[data-v-9b4fa840] {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--p-warning-500);
    color: var(--p-warning-900);
    border: 2px solid var(--p-warning-200);
    border-radius: 999px;
    padding: 0.2rem 0.9rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.beta-card-title[data-v-9b4fa840] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--p-warning-700);
    margin-bottom: 0.35rem;
    text-align: center;
}
.beta-card-copy[data-v-9b4fa840] {
    margin: 0;
    color: var(--p-warning-0);
    font-size: 0.9rem;
    line-height: 1.55;
}
.features-list[data-v-9b4fa840] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 1rem;
}
.feature-item[data-v-9b4fa840] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--p-surface-700);
}
.feature-icon[data-v-9b4fa840] {
    font-size: 1.25rem;
    color: var(--p-primary-500);
    margin-right: 0.25rem;
}
.feature-text[data-v-9b4fa840] {
    font-size: 0.9rem;
    color: var(--p-surface-800);
}
.dialog-footer[data-v-9b4fa840] {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.got-it-button[data-v-9b4fa840] {
    width: 100% !important;
}

  /* Drawer header styling */
.drawer-header[data-v-b588aa5e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 3000;
}
.drawer-title[data-v-b588aa5e] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--p-text-color);
    z-index: 3000;
}
.call-duration[data-v-b588aa5e] {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--p-text-muted-color);
}

  /* Drawer content styling */
.drawer-content[data-v-b588aa5e] {
    padding: 0;
}
.participants-section[data-v-b588aa5e],
  .call-details-section[data-v-b588aa5e] {
    margin-bottom: 2rem;
}
.section-title[data-v-b588aa5e] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--p-text-color);
    border-bottom: 1px solid var(--p-border-color);
    padding-bottom: 0.5rem;
}
.participants-list[data-v-b588aa5e] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.participant-item[data-v-b588aa5e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--p-surface-100);
    border-radius: 0.5rem;
    border: 1px solid var(--p-border-color);
}
.participant-info[data-v-b588aa5e] {
    flex: 1;
}
.participant-name[data-v-b588aa5e] {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--p-text-color);
}
.participant-timing[data-v-b588aa5e] {
    font-size: 0.85rem;
    color: var(--p-text-muted-color);
}
.left-time[data-v-b588aa5e] {
    color: var(--p-text-muted-color);
    opacity: 0.7;
}
.participant-status[data-v-b588aa5e] {
    flex-shrink: 0;
}
.status-badge[data-v-b588aa5e] {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}
.status-pending[data-v-b588aa5e] {
    background: var(--p-yellow-100);
    color: var(--p-yellow-700);
    border: 1px solid var(--p-yellow-200);
}
.status-accepted[data-v-b588aa5e] {
    background: var(--p-green-100);
    color: var(--p-green-700);
    border: 1px solid var(--p-green-200);
}
.status-declined[data-v-b588aa5e] {
    background: var(--p-red-100);
    color: var(--p-red-700);
    border: 1px solid var(--p-red-200);
}
.status-left[data-v-b588aa5e] {
    background: var(--p-surface-200);
    color: var(--p-surface-600);
    border: 1px solid var(--p-surface-300);
}
.status-unknown[data-v-b588aa5e] {
    background: var(--p-surface-100);
    color: var(--p-text-muted-color);
    border: 1px solid var(--p-border-color);
}
.call-details[data-v-b588aa5e] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.detail-item[data-v-b588aa5e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--p-surface-50);
    border-radius: 0.5rem;
    border: 1px solid var(--p-border-color);
}
.detail-label[data-v-b588aa5e] {
    font-weight: 600;
    color: var(--p-text-color);
}
.detail-value[data-v-b588aa5e] {
    color: var(--p-text-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

  /* Dark mode support */
@media (prefers-color-scheme: dark) {
.participant-item[data-v-b588aa5e] {
      background: var(--p-surface-800);
}
.detail-item[data-v-b588aa5e] {
      background: var(--p-surface-900);
}
.status-pending[data-v-b588aa5e] {
      background: rgba(255, 193, 7, 0.2);
      color: #ffc107;
}
.status-accepted[data-v-b588aa5e] {
      background: rgba(40, 167, 69, 0.2);
      color: #28a745;
}
.status-declined[data-v-b588aa5e] {
      background: rgba(220, 53, 69, 0.2);
      color: #dc3545;
}
.status-left[data-v-b588aa5e] {
      background: rgba(108, 117, 125, 0.2);
      color: #6c757d;
}
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.drawer-header[data-v-b588aa5e] {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
}
.participant-item[data-v-b588aa5e] {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
}
.participant-status[data-v-b588aa5e] {
      align-self: flex-end;
}
.detail-item[data-v-b588aa5e] {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
}
}

.pip-root[data-v-f4e37284] {
    position: fixed;
    z-index: 16000;
    width: min(60vw, 400px);
    aspect-ratio: 6 / 4;
    pointer-events: auto;
    /* Smoothly animate the PiP between anchor positions (we animate via `transform`). */
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}
.pip-card[data-v-f4e37284] {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.88);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    position: relative;
    touch-action: pan-y;
}
.pip-video[data-v-f4e37284] {
    position: absolute;
    inset: 0;
}
.pip-empty[data-v-f4e37284] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
}
.pip-controls[data-v-f4e37284] {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}
.pip-control[data-v-f4e37284] {
    width: 2.25rem !important;
    height: 2.25rem !important;
    background: rgba(0, 0, 0, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: white !important;
    backdrop-filter: blur(6px);
}
.pip-control[data-v-f4e37284]:hover {
    background: rgba(0, 0, 0, 0.78) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}
.pip-control-off[data-v-f4e37284] {
    border-color: rgba(239, 68, 68, 0.45) !important;
}
.pip-control-expand[data-v-f4e37284] {
    border-color: rgba(59, 130, 246, 0.35) !important;
}
@media (prefers-reduced-motion: reduce) {
.pip-root[data-v-f4e37284] {
      transition: none;
}
}

.active-call-overlay[data-v-cb3582c2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.status-bar-spacer[data-v-cb3582c2] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    flex-shrink: 0;
}
.active-call-container[data-v-cb3582c2] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.call-window-area[data-v-cb3582c2] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 0;
}
.call-actions-bar[data-v-cb3582c2] {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}
.call-actions-content[data-v-cb3582c2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.left-actions[data-v-cb3582c2],
  .right-actions[data-v-cb3582c2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}
.left-actions[data-v-cb3582c2] {
    justify-content: flex-start;
}
.right-actions[data-v-cb3582c2] {
    justify-content: flex-end;
}
.call-controls[data-v-cb3582c2] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}
.action-button[data-v-cb3582c2] {
    width: 3rem !important;
    height: 3rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}
.action-button[data-v-cb3582c2]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}
.control-button[data-v-cb3582c2] {
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.25rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}
.control-button[data-v-cb3582c2]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}
.end-call-button[data-v-cb3582c2] {
    background: #dc3545 !important;
    border: 1px solid #dc3545 !important;
}
.end-call-button[data-v-cb3582c2]:hover {
    background: #c82333 !important;
    border: 1px solid #c82333 !important;
}

  /* Media control states */
.control-button.mic-disabled[data-v-cb3582c2] {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.5) !important;
    color: #ef4444 !important;
}
.control-button.camera-disabled[data-v-cb3582c2] {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.5) !important;
    color: #ef4444 !important;
}
.control-button.device-unavailable[data-v-cb3582c2] {
    background: rgba(107, 114, 128, 0.2) !important;
    border: 1px solid rgba(107, 114, 128, 0.5) !important;
    color: #6b7280 !important;
    opacity: 0.6;
    cursor: not-allowed !important;
}
.control-button.device-unavailable[data-v-cb3582c2]:hover {
    background: rgba(107, 114, 128, 0.2) !important;
    border: 1px solid rgba(107, 114, 128, 0.5) !important;
    transform: none !important;
}
.call-duration[data-v-cb3582c2] {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 4rem;
    text-align: center;
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.call-window-area[data-v-cb3582c2] {
      padding: 0.5rem;
      padding-bottom: 0;
}
.call-actions-bar[data-v-cb3582c2] {
      padding: 1rem;
}
.call-actions-content[data-v-cb3582c2] {
      /* Keep the three-section layout on mobile */
      flex-direction: row;
      gap: 0.5rem;
}
.left-actions[data-v-cb3582c2],
    .right-actions[data-v-cb3582c2] {
      flex: 0 0 auto;
      min-width: auto;
}
.call-controls[data-v-cb3582c2] {
      flex: 1;
      justify-content: center;
      gap: 0.75rem;
}
.action-button[data-v-cb3582c2] {
      width: 2.5rem !important;
      height: 2.5rem !important;
}
.control-button[data-v-cb3582c2] {
      width: 3rem !important;
      height: 3rem !important;
      font-size: 1.1rem !important;
}
.call-duration[data-v-cb3582c2] {
      font-size: 0.9rem;
      padding: 0.25rem 0.75rem;
      margin-right: 0.5rem;
}
.end-call-button[data-v-cb3582c2] {
      width: 2.75rem !important;
      height: 2.75rem !important;
}
}

.permission-overlay[data-v-c54327d6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.permission-content[data-v-c54327d6] {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.permission-icon[data-v-c54327d6] {
    margin-bottom: 1.5rem;
}
.permission-title[data-v-c54327d6] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}
.permission-message[data-v-c54327d6] {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.permission-actions[data-v-c54327d6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.permission-button[data-v-c54327d6] {
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    border-radius: 0.5rem !important;
}
.permission-button.primary[data-v-c54327d6] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: 1px solid #3b82f6 !important;
    color: white !important;
}
.permission-button.primary[data-v-c54327d6]:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.permission-button.secondary[data-v-c54327d6] {
    background: rgba(75, 85, 99, 0.3) !important;
    border: 1px solid rgba(75, 85, 99, 0.5) !important;
    color: #d1d5db !important;
}
.permission-button.secondary[data-v-c54327d6]:hover {
    background: rgba(75, 85, 99, 0.5) !important;
    border: 1px solid rgba(75, 85, 99, 0.7) !important;
}
.permission-button.cancel[data-v-c54327d6] {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.5) !important;
    color: #fca5a5 !important;
}
.permission-button.cancel[data-v-c54327d6]:hover {
    background: rgba(239, 68, 68, 0.3) !important;
    border: 1px solid rgba(239, 68, 68, 0.7) !important;
}
.permission-help[data-v-c54327d6] {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
    border: 1px solid rgba(75, 85, 99, 0.3);
}
.help-text[data-v-c54327d6] {
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 0.75rem;
}
.help-list[data-v-c54327d6] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.help-list li[data-v-c54327d6] {
    padding: 0.25rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}
.help-list li[data-v-c54327d6]::before {
    content: '•';
    color: #60a5fa;
    font-weight: bold;
    position: absolute;
    left: 0;
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.permission-overlay[data-v-c54327d6] {
      padding: 1rem;
}
.permission-content[data-v-c54327d6] {
      padding: 2rem;
}
.permission-title[data-v-c54327d6] {
      font-size: 1.25rem;
}
.permission-actions[data-v-c54327d6] {
      gap: 0.75rem;
}
.permission-button[data-v-c54327d6] {
      padding: 0.625rem 1.25rem !important;
}
}

.xp-toast[data-v-01239447] {
    position: fixed;
    top: 30%;
    right: -1px;
    transform: translateY(-50%);
    z-index: 9999;
    background: var(--p-primary-700);
    border: 3px solid var(--p-primary-800);
    border-radius: 0.75rem 0 0 0.75rem;
    border-right: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    pointer-events: none;
    opacity: 0.9;
    overflow: hidden;
}
.xp-toast-content[data-v-01239447] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
}
.xp-footer[data-v-01239447] {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 0.4rem 1.3rem;
    margin: 0 -0.75rem -0.75rem -0.75rem;
    color: #f8fafc;
    height: 50px;
}

  /* Progress bar borrowed from SeasonAssetCard */
.xp-hurdle[data-v-01239447] {
    left: 8px;
    right: 8px;
    bottom: 6px;
    height: 8px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(253, 230, 138, 0.8);
    padding: 1px 1px;
    margin: 0.25rem 0 0.5rem 0;
}
.hurdle-progress-fill[data-v-01239447] {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.6);
    transition: width 200ms ease;
    border-radius: 9999px;
    overflow: hidden;
}
.xp-icon-container[data-v-01239447] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.xp-icon[data-v-01239447] {
    color: var(--p-surface-100);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-bottom: 5px;
}
.gleam-effect[data-v-01239447] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}
.gleam-effect.animate[data-v-01239447] {
    animation: gleam-01239447 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}
@keyframes gleam-01239447 {
0% {
      left: -100%;
      opacity: 0;
}
10% {
      opacity: 1;
}
20% {
      left: 100%;
      opacity: 0;
}
100% {
      left: 100%;
      opacity: 0;
}
}
.xp-amount[data-v-01239447] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--p-surface-200);
    line-height: 1;
}
.xp-amount-xp-text[data-v-01239447] {
    font-size: 0.75rem;
    color: var(--p-surface-300);
    line-height: 1;
    margin-left: 0.1rem;
}
.xp-reason[data-v-01239447] {
    font-size: 0.75rem;
    color: var(--p-surface-300);
    text-align: center;
    line-height: 1;
}

  /* ===== REWARD LEVEL STYLES ===== */

  /* TINY - Dark Grey */
.xp-toast.tiny[data-v-01239447] {
    background: #374151;
    border-color: #4b5563;
}
.xp-toast.tiny .xp-amount[data-v-01239447] {
    color: #d1d5db;
}
.xp-toast.tiny .xp-amount-xp-text[data-v-01239447],
  .xp-toast.tiny .xp-reason[data-v-01239447] {
    color: #9ca3af;
}
.xp-toast.tiny .gleam-effect[data-v-01239447] {
    background: linear-gradient(
      45deg,
      transparent 30%,
      #4b5563 50%,
      transparent 70%
    );
}
.xp-toast.tiny .xp-footer[data-v-01239447] {
    background: #1f2937;
}

  /* COMMON - Yip Yap Teal */
.xp-toast.common[data-v-01239447] {
    background: #0f766e;
    border-color: #0d9488;
}
.xp-toast.common .xp-amount[data-v-01239447] {
    color: #ccfbf1;
}
.xp-toast.common .xp-amount-xp-text[data-v-01239447],
  .xp-toast.common .xp-reason[data-v-01239447] {
    color: #99f6e4;
}
.xp-toast.common .gleam-effect[data-v-01239447] {
    background: linear-gradient(
      45deg,
      transparent 30%,
      #14b8a6 50%,
      transparent 70%
    );
}
.xp-toast.common .xp-footer[data-v-01239447] {
    background: #0d4f47;
}

  /* RARE - Regal Purple/Red */
.xp-toast.rare[data-v-01239447] {
    background: linear-gradient(135deg, #7c2d12 0%, #991b1b 50%, #7c3aed 100%);
    border-color: #dc2626;
}
.xp-toast.rare .xp-amount[data-v-01239447] {
    color: #fef2f2;
}
.xp-toast.rare .xp-amount-xp-text[data-v-01239447],
  .xp-toast.rare .xp-reason[data-v-01239447] {
    color: #fecaca;
}
.xp-toast.rare .gleam-effect[data-v-01239447] {
    background: linear-gradient(
      45deg,
      transparent 30%,
      #dc2626 50%,
      transparent 70%
    );
}
.xp-toast.rare .xp-footer[data-v-01239447] {
    background: linear-gradient(135deg, #450a0a 0%, #4c1d95 100%);
}

  /* EPIC - Gold/Yellow */
.xp-toast.epic[data-v-01239447] {
    background: linear-gradient(135deg, #92400e 0%, #ca8a04 50%, #eab308 100%);
    border-color: #f59e0b;
}
.xp-toast.epic .xp-amount[data-v-01239447] {
    color: #fffbeb;
}
.xp-toast.epic .xp-amount-xp-text[data-v-01239447],
  .xp-toast.epic .xp-reason[data-v-01239447] {
    color: #fef3c7;
}
.xp-toast.epic .xp-footer[data-v-01239447] {
    background: linear-gradient(135deg, #451a03 0%, #713f12 100%);
}

  /* LEGEND - Brilliant Green */
.xp-toast.legend[data-v-01239447] {
    background: linear-gradient(135deg, #14532d 0%, #166534 50%, #16a34a 100%);
    border-color: #22c55e;
}
.xp-toast.legend .xp-amount[data-v-01239447] {
    color: #f0fdf4;
}
.xp-toast.legend .xp-amount-xp-text[data-v-01239447],
  .xp-toast.legend .xp-reason[data-v-01239447] {
    color: #dcfce7;
}
.xp-toast.legend .xp-footer[data-v-01239447] {
    background: linear-gradient(135deg, #052e16 0%, #14532d 100%);
}

  /* ===== CARD HIGHLIGHT ANIMATION (EPIC & LEGEND) ===== */
.card-highlight[data-v-01239447] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: cardHighlight-01239447 2s ease-out infinite;
    animation-delay: 0.5s;
    pointer-events: none;
    z-index: 1;
}

  /* EPIC card highlight - lighter gold variant */
.xp-toast.epic .card-highlight[data-v-01239447] {
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(251, 191, 36, 0.6) 50%,
      transparent 70%
    );
}

  /* LEGEND card highlight - lighter green variant */
.xp-toast.legend .card-highlight[data-v-01239447] {
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(74, 222, 128, 0.6) 50%,
      transparent 70%
    );
}
@keyframes cardHighlight-01239447 {
0% {
      left: -100%;
      opacity: 0;
}
10% {
      opacity: 1;
}
20% {
      left: 100%;
      opacity: 0;
}
100% {
      left: 100%;
      opacity: 0;
}
}

  /* Ensure content is above highlight */
.xp-toast-content[data-v-01239447] {
    position: relative;
    z-index: 2;
}

  /* ===== SLIDE ANIMATIONS ===== */
.xp-toast-enter-active[data-v-01239447] {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.xp-toast-leave-active[data-v-01239447] {
    transition: transform 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
.xp-toast-enter-from[data-v-01239447] {
    transform: translateY(-50%) translateX(100%);
}
.xp-toast-leave-to[data-v-01239447] {
    transform: translateY(-50%) translateX(100%);
}

.xp-asset-ready-overlay-wrapper[data-v-d2f6a56b] {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn-d2f6a56b 0.3s ease-out;
}
.status-bar-spacer[data-v-d2f6a56b] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    flex-shrink: 0;
}
.xp-asset-ready-overlay[data-v-d2f6a56b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.content[data-v-d2f6a56b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.headline[data-v-d2f6a56b] {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffd700 20%, #ffffff 50%, #ffd700 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gleam-gold-d2f6a56b 2s linear infinite;
    text-shadow:
      0 0 2px #fffbe6,
      0 0 2px #ffd700;
    letter-spacing: 0.03em;
}
.claim-button[data-v-d2f6a56b] {
    background: linear-gradient(90deg, #ffd700 0%, #fbbf24 50%, #f59e0b 100%);

    border: 2px solid #f59e0b;
    box-shadow:
      0 0 12px rgba(245, 158, 11, 0.6),
      0 0 24px rgba(245, 158, 11, 0.35);
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    position: relative;
    overflow: hidden;
}
.claim-button[data-v-d2f6a56b] .p-button-label {
    color: #815406;
    font-weight: 900 !important;
}
.claim-button[data-v-d2f6a56b]:hover {
    background: linear-gradient(
      90deg,
      #ffd700 0%,
      #fbbf24 50%,
      #f59e0b 100%
    ) !important;
    color: #815406 !important;
    font-weight: 900 !important;
    border: 2px solid #f59e0b !important;
    transform: scale(1.01) translate(-2px, -2px);
    box-shadow:
      2px 2px 5px rgba(0, 0, 0, 0.1),
      2px 2px 10px rgba(0, 0, 0, 0.055);
    transition: all 0.1s ease-out;
}
.claim-button[data-v-d2f6a56b]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0.8;
    animation: gleam-d2f6a56b 3s ease-out infinite;
    pointer-events: none;
}
@keyframes gleam-gold-d2f6a56b {
0% {
      background-position: 0 200%;
}
100% {
      background-position: 0 0;
}
}
@keyframes gleam-d2f6a56b {
0% {
      transform: translateX(0);
}
100% {
      transform: translateX(200%);
}
}
.confetti-canvas[data-v-d2f6a56b] {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000000002;
    width: 100vw;
    height: 100vh;
}
@keyframes fadeIn-d2f6a56b {
from {
      opacity: 0;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
}
to {
      opacity: 1;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
}
}

.xp-summary-dialog {
    padding: 0rem !important;
    background: linear-gradient(
      180deg,
      var(--p-primary-500) 0%,
      var(--p-primary-600) 100%
    ) !important;
    color: #ffffff !important;
    border-radius: 1.5rem !important;
}
.xp-summary-dialog .p-dialog-content {
    padding: 0rem !important;
}

.xp-summary-close-button[data-v-1a290878] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}
.xp-summary-root[data-v-1a290878] {
    padding: 0.75rem 0.75rem 1rem 0.75rem;
}
.xp-summary-header[data-v-1a290878] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
}
.xp-summary-title .title[data-v-1a290878] {
    font-weight: 700;
    font-size: 1.05rem;
    color: #f8fafc;
}
.xp-summary-title .subtitle[data-v-1a290878] {
    font-size: 0.85rem;
    color: #cbd5e1;
}
.xp-items[data-v-1a290878] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.25rem;
    padding-bottom: 1rem;
}
.xp-item[data-v-1a290878] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    border: 2px solid var(--p-primary-300);
    background: var(--p-primary-600);
}
.xp-item-main[data-v-1a290878] {
    width: 100%;
}
.xp-item .xp-item-title[data-v-1a290878] {
    font-weight: 700;
    color: #f1f5f9;
    font-size: 0.95rem;
}
.xp-item .xp-item-reason[data-v-1a290878] {
    color: #cbd5e1;
    font-size: 0.8rem;
}
.xp-item .xp-item-status[data-v-1a290878] {
    color: #e5e7ebb0;
    font-size: 0.85rem;

    margin-top: 0.15rem;
}
.xp-item .xp-item-xp[data-v-1a290878] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 65px;
}
.xp-item .xp-amount[data-v-1a290878] {
    color: #fef3c7;
    font-weight: 800;
}
.xp-item .xp-unit[data-v-1a290878] {
    color: #fde68a;
    font-size: 0.7rem;
}
.xp-item .xp-amount-row[data-v-1a290878] {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}
.xp-item .xp-result[data-v-1a290878] {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.status-awarded[data-v-1a290878] {
    color: #bbf7d0; /* green-200 */
}
.status-ontrack[data-v-1a290878] {
    color: #fde68a; /* amber-200 */
}
.status-not[data-v-1a290878] {
    color: #fecaca; /* red-200 */
}

  /* Use same classes as XPToast reward levels for accenting */
  /* .tiny {
    border-color: #4b5563;
  }
  .common {
    border-color: #0d9488;
  }
  .rare {
    border-color: #dc2626;
  }
  .epic {
    border-color: #f59e0b;
  }
  .legend {
    border-color: #22c55e;
  } */
.xp-item-title .title-text[data-v-1a290878] {
    font-weight: 700;
    color: #f1f5f9;
    font-size: 0.95rem;
}

  /* Daily streak */
.streak-line[data-v-1a290878] {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-top: 0.35rem;
}
.streak-number[data-v-1a290878] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fde68a;
}
.streak-label[data-v-1a290878] {
    font-size: 0.8rem;
    color: #cbd5e1;
}

  /* Three day boxes */
.three-day-row[data-v-1a290878] {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
}
.mini-box[data-v-1a290878] {
    min-width: 55px;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.25rem 0.35rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
}
.mini-box.green[data-v-1a290878] {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    color: #bbf7d0;
}
.mini-box.empty[data-v-1a290878] {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
}

  /* Generic bar */
.bar-block[data-v-1a290878] {
    margin-top: 0.4rem;
    width: 100%;
}
.bar[data-v-1a290878] {
    height: 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}
.bar-fill[data-v-1a290878] {
    height: 100%;
    transition: width 200ms ease;
}
.bar-fill.green[data-v-1a290878] {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
.bar-fill.red[data-v-1a290878] {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}
.bar-fill.yellow[data-v-1a290878] {
    background: linear-gradient(90deg, #fde68a 0%, #f59e0b 100%);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}
.bar-caption[data-v-1a290878] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--p-primary-0);
}

  /* Rested tags and generic tags */
.rested-row[data-v-1a290878] {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}
.tag[data-v-1a290878] {
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}
.tag.green[data-v-1a290878] {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    color: #bbf7d0;
}
.tag.red[data-v-1a290878] {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fecaca;
}
.ml-2[data-v-1a290878] {
    margin-left: 0.5rem;
}
.xp-progress-section[data-v-1a290878] {
    padding: 0.25rem 0.75rem 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-bottom: 1rem;
}
.progress-block .progress-label[data-v-1a290878] {
    font-size: 0.8rem;
    color: var(--p-primary-0);
    margin: 0 0 0.25rem 0.25rem;
}

  /* Reuse XPToast bar look */
.xp-hurdle[data-v-1a290878] {
    left: 8px;
    right: 8px;
    height: 15px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(253, 230, 138, 0.5);
    padding: 1px 1px;
}
.hurdle-progress-fill[data-v-1a290878] {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.6);
    transition: width 200ms ease;
    border-radius: 9999px;
    overflow: hidden;
}
.xp-summary-footer[data-v-1a290878] {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 0.75rem 0rem 0.75rem;
}
.keen-slider:not([data-keen-slider-disabled]){-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;align-content:flex-start;display:flex;overflow:hidden;position:relative;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-khtml-user-select:none;width:100%}.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide{min-height:100%;overflow:hidden;position:relative;width:100%}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse]{flex-direction:row-reverse}.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v]{flex-wrap:wrap}
.rewards-carousel-container[data-v-9b102258] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    height: 100%;
    width: 100%;
}
.rewards-carousel[data-v-9b102258] {
    flex: 1;
    height: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    min-width: 100%;
    max-width: 100%;
}
.carousel-item[data-v-9b102258] {
    border-radius: 12px;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    min-height: 120px;
    max-height: 240px;
    min-width: 120px;
    max-width: 120px;
}

  /* Default styling for image content (when no slot provided) */
.carousel-item[data-v-9b102258]:not(.has-slot-content) {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 1/1;
    height: 200px;
}

  /* Styling for slot content (SeasonAssetCard) */
.carousel-item.has-slot-content[data-v-9b102258] {
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

  /* Ensure slot content fills the carousel item */
.carousel-item.has-slot-content[data-v-9b102258] .season-asset-card {
    width: 100%;
    height: 100%;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.carousel-item[data-v-9b102258]:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
}
.carousel-image[data-v-9b102258] {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    max-height: 120px;
    min-height: 120px;
}
.carousel-item-title[data-v-9b102258] {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}
.carousel-arrow[data-v-9b102258] {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}
.carousel-arrow-left[data-v-9b102258] {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 100;
}
.carousel-arrow-right[data-v-9b102258] {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 100;
}
.carousel-arrow[data-v-9b102258]:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
}
.carousel-arrow[data-v-9b102258]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.carousel-arrow i[data-v-9b102258] {
    color: white;
    font-size: 1.2rem;
}

  /* Mobile responsiveness */
@media (max-width: 768px) {
.carousel-item[data-v-9b102258]:not(.has-slot-content) {
      height: 160px;
}
.carousel-arrow[data-v-9b102258] {
      width: 40px;
      height: 40px;
}
.carousel-arrow i[data-v-9b102258] {
      font-size: 1rem;
}
}
@media (max-width: 480px) {
.carousel-item[data-v-9b102258]:not(.has-slot-content) {
      height: 140px;
}
.rewards-carousel-container[data-v-9b102258] {
      gap: 0.5rem;
}
}

.camera-upload[data-v-1aeb7986] {
    display: inline-block;
}
.camera-trigger-button[data-v-1aeb7986] {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}

  /* Full-screen camera dialog styles */
[data-v-1aeb7986] .camera-dialog-root {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
[data-v-1aeb7986] .camera-dialog-content {
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #000;
}
.camera-container[data-v-1aeb7986] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #000;
}
.camera-view-container[data-v-1aeb7986] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.camera-video[data-v-1aeb7986],
  .captured-image[data-v-1aeb7986] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.camera-controls[data-v-1aeb7986] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
}
.control-button[data-v-1aeb7986] {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.capture-button[data-v-1aeb7986] {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
}
.cancel-button[data-v-1aeb7986] {
    background: rgba(239, 68, 68, 0.8) !important;
    border-color: rgba(239, 68, 68, 0.8) !important;
}
.save-button[data-v-1aeb7986] {
    background: rgba(34, 197, 94, 0.8) !important;
    border-color: rgba(34, 197, 94, 0.8) !important;
}
.retake-button[data-v-1aeb7986] {
    background: rgba(107, 114, 128, 0.8) !important;
    border-color: rgba(107, 114, 128, 0.8) !important;
}
.control-button[data-v-1aeb7986]:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.file-upload[data-v-b4c1298e] {
    display: inline-block;
}
.file-trigger-button[data-v-b4c1298e] {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}
.hidden-file-input[data-v-b4c1298e] {
    display: none;
}

.web-search-upload[data-v-98f7e250] {
    display: inline-block;
}
.search-trigger-button[data-v-98f7e250] {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}
.search-container[data-v-98f7e250] {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}
.search-input-section[data-v-98f7e250] {
    flex-shrink: 0;
}
.search-input-wrapper[data-v-98f7e250] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.search-input[data-v-98f7e250] {
    flex: 1;
}
.search-results-section[data-v-98f7e250] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.empty-state[data-v-98f7e250],
  .loading-state[data-v-98f7e250],
  .no-results[data-v-98f7e250] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: var(--p-text-muted-color);
}
.empty-icon[data-v-98f7e250],
  .no-results-icon[data-v-98f7e250] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.empty-text[data-v-98f7e250],
  .try-again-text[data-v-98f7e250] {
    margin: 0.5rem 0;
}
.try-again-text[data-v-98f7e250] {
    font-size: 0.875rem;
    opacity: 0.7;
}
.results-grid-wrapper[data-v-98f7e250] {
    flex: 1;
    overflow: scroll;
}
.results-grid[data-v-98f7e250] {
    display: grid;
    grid-template-columns: repeat(10, minmax(150px, 1fr));
    gap: 1rem;

    padding: 0.5rem;
}
.result-item[data-v-98f7e250] {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: var(--p-surface-card);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.result-item[data-v-98f7e250]:hover {
    border-color: var(--p-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.result-item.selected[data-v-98f7e250] {
    border-color: var(--p-primary-color);
    background: var(--p-primary-50);
}
.result-image-container[data-v-98f7e250] {
    position: relative;
    width: 100%;
    height: 120px;
}
.result-image[data-v-98f7e250] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selection-overlay[data-v-98f7e250] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--p-primary-500-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.selection-check[data-v-98f7e250] {
    color: white;
    font-size: 2rem;
}
.result-info[data-v-98f7e250] {
    padding: 0.75rem;
}
.result-title[data-v-98f7e250] {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.result-source[data-v-98f7e250] {
    font-size: 0.75rem;
    color: var(--p-text-muted-color);
    margin: 0;
}
.dialog-footer[data-v-98f7e250] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

  /* Responsive adjustments */
@media (max-width: 768px) {
.results-grid[data-v-98f7e250] {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 0.75rem;
}
.result-image-container[data-v-98f7e250] {
      height: 100px;
}
}
.vue-advanced-cropper {
  text-align: center;
  position: relative;
  user-select: none;
  max-height: 100%;
  max-width: 100%;
  direction: ltr;
}
.vue-advanced-cropper__stretcher {
  pointer-events: none;
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
.vue-advanced-cropper__image {
  user-select: none;
  position: absolute;
  transform-origin: center;
  max-width: none !important;
}
.vue-advanced-cropper__background, .vue-advanced-cropper__foreground {
  opacity: 1;
  background: black;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.vue-advanced-cropper__foreground {
  opacity: 0.5;
}
.vue-advanced-cropper__boundaries {
  opacity: 1;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.vue-advanced-cropper__cropper-wrapper {
  width: 100%;
  height: 100%;
}
.vue-advanced-cropper__image-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.vue-advanced-cropper__stencil-wrapper {
  position: absolute;
}

.vue-simple-handler {
  display: block;
  background: white;
  height: 10px;
  width: 10px;
}

.vue-handler-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
.vue-handler-wrapper__draggable {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vue-handler-wrapper--west-north {
  cursor: nw-resize;
}
.vue-handler-wrapper--north {
  cursor: n-resize;
}
.vue-handler-wrapper--east-north {
  cursor: ne-resize;
}
.vue-handler-wrapper--east {
  cursor: e-resize;
}
.vue-handler-wrapper--east-south {
  cursor: se-resize;
}
.vue-handler-wrapper--south {
  cursor: s-resize;
}
.vue-handler-wrapper--west-south {
  cursor: sw-resize;
}
.vue-handler-wrapper--west {
  cursor: w-resize;
}
.vue-handler-wrapper--disabled {
  cursor: auto;
}

.vue-line-wrapper {
  background: none;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vue-line-wrapper--north, .vue-line-wrapper--south {
  height: 12px;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
}
.vue-line-wrapper--north {
  top: 0;
  cursor: n-resize;
}
.vue-line-wrapper--south {
  top: 100%;
  cursor: s-resize;
}
.vue-line-wrapper--east, .vue-line-wrapper--west {
  width: 12px;
  height: 100%;
  transform: translateX(-50%);
  top: 0;
}
.vue-line-wrapper--east {
  left: 100%;
  cursor: e-resize;
}
.vue-line-wrapper--west {
  left: 0;
  cursor: w-resize;
}
.vue-line-wrapper--disabled {
  cursor: auto;
}

.vue-bounding-box {
  position: relative;
  height: 100%;
  width: 100%;
}
.vue-bounding-box__handler {
  position: absolute;
}
.vue-bounding-box__handler--west-north {
  left: 0;
  top: 0;
}
.vue-bounding-box__handler--north {
  left: 50%;
  top: 0;
}
.vue-bounding-box__handler--east-north {
  left: 100%;
  top: 0;
}
.vue-bounding-box__handler--east {
  left: 100%;
  top: 50%;
}
.vue-bounding-box__handler--east-south {
  left: 100%;
  top: 100%;
}
.vue-bounding-box__handler--south {
  left: 50%;
  top: 100%;
}
.vue-bounding-box__handler--west-south {
  left: 0;
  top: 100%;
}
.vue-bounding-box__handler--west {
  left: 0;
  top: 50%;
}

.vue-draggable-area {
  position: relative;
}

.vue-preview-result {
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  height: 100%;
  width: 100%;
}
.vue-preview-result__wrapper {
  position: absolute;
}
.vue-preview-result__image {
  pointer-events: none;
  position: relative;
  user-select: none;
  transform-origin: center;
  max-width: none !important;
}

.vue-rectangle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.vue-rectangle-stencil__preview {
  position: absolute;
  width: 100%;
  height: 100%;
}
.vue-rectangle-stencil--movable {
  cursor: move;
}

.vue-circle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  cursor: move;
}
.vue-circle-stencil__preview {
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
}
.vue-circle-stencil--movable {
  cursor: move;
}

.vue-preview {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.vue-preview--fill {
  width: 100%;
  height: 100%;
  position: absolute;
}
.vue-preview__wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}
.vue-preview__image {
  pointer-events: none;
  position: absolute;
  user-select: none;
  transform-origin: center;
  max-width: none !important;
}

.vue-simple-line {
  background: none;
  transition: border 0.5s;
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 0;
  border-style: solid;
}
.vue-simple-line--south, .vue-simple-line--north {
  height: 0;
  width: 100%;
}
.vue-simple-line--east, .vue-simple-line--west {
  height: 100%;
  width: 0;
}
.vue-simple-line--east {
  border-right-width: 1px;
}
.vue-simple-line--west {
  border-left-width: 1px;
}
.vue-simple-line--south {
  border-bottom-width: 1px;
}
.vue-simple-line--north {
  border-top-width: 1px;
}
.vue-simple-line--hover {
  opacity: 1;
  border-color: white;
}
.crop-aspect-choice[data-v-e80d24e1] {
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Ensure the SpeedDial doesn't interfere with layout */
[data-v-e80d24e1] .p-speeddial {
    position: static;
}
[data-v-e80d24e1] .p-speeddial-list {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000 !important;
}
.aspect-choice-button[data-v-e80d24e1] {
    width: 3rem !important;
    min-width: 3rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 1.25rem !important;
}
.aspect-choice-button[data-v-e80d24e1]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05);
    transition: all 0.2s ease;
}
.aspect-item[data-v-e80d24e1] {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aspect-item-button[data-v-e80d24e1] {
    width: 2.5rem !important;
    min-width: 2.5rem !important;
    height: 2.5rem !important;
    min-height: 2.5rem !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}
.aspect-item-button[data-v-e80d24e1]:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

  /* Highlight current selection */
.aspect-item-button.current-selection[data-v-e80d24e1] {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(0, 0, 0, 0.8) !important;
    color: rgba(0, 0, 0, 0.9) !important;
}
.aspect-item-button.current-selection[data-v-e80d24e1]:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 1) !important;
    color: rgba(0, 0, 0, 1) !important;
}

  /* Aspect ratio visual components */
.aspect-visual[data-v-e80d24e1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.aspect-icon[data-v-e80d24e1] {
    justify-content: center;
    align-items: center;
    display: flex;
}
.aspect-rectangle[data-v-e80d24e1] {
    border-radius: 1px;
}
.aspect-circle[data-v-e80d24e1] {
    width: 16px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    background: transparent;
}

  /* Full-screen overlay */
.image-crop-overlay[data-v-f2ae5a74] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000; /* Higher than image edit overlay */
    display: flex;
    flex-direction: column;
}
.status-bar-spacer[data-v-f2ae5a74] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    flex-shrink: 0;
}
.crop-container[data-v-f2ae5a74] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #000;
}
.cropper-area[data-v-f2ae5a74] {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.cropper[data-v-f2ae5a74] {
    width: 100%;
    height: 100%;
}
.crop-controls[data-v-f2ae5a74] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
}
.control-button[data-v-f2ae5a74] {
    width: 3rem !important;
    min-width: 3rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
    font-size: 1.25rem !important;
    border: 3px solid;
}
.confirm-button[data-v-f2ae5a74] {
    width: 4rem !important;
    min-width: 4rem !important;
    height: 4rem !important;
    min-height: 4rem !important;
    font-size: 1.75rem !important;
}
.cancel-button[data-v-f2ae5a74] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: var(--p-warning-400) !important;
}
.save-button[data-v-f2ae5a74] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: rgba(256, 256, 256, 0.8) !important;
}
.control-button[data-v-f2ae5a74]:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

  /* Mobile optimizations */
@media (max-width: 768px) {
.crop-controls[data-v-f2ae5a74] {
      gap: 1.5rem;
      padding: 1.5rem;
}
.control-button[data-v-f2ae5a74] {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.25rem;
}
}

  /* Full-screen overlay */
.image-edit-overlay[data-v-c979e764] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.status-bar-spacer[data-v-c979e764] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    flex-shrink: 0;
}
.edit-container[data-v-c979e764] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border: none;
}
[data-v-c979e764] .galleria-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: none;
}

  /* Galleria customization */
[data-v-c979e764] .galleria-fullscreen {
    border: none !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
}
[data-v-c979e764] .galleria-items {
    min-height: calc(100vh - 300px) !important;
    height: 500px !important;
}
[data-v-c979e764] .galleria-item {
    min-height: calc(100vh - 300px) !important;
    height: 500px !important;
}
[data-v-c979e764] .galleria-image {
    max-height: calc(100vh - 300px) !important;
}
[data-v-c979e764] .galleria-thumbnails {
    display: flex !important;
    gap: 1rem !important;
    padding: 1rem !important;
    flex-direction: row !important;
}
[data-v-c979e764] .galleria-thumbnail-item {
    padding: 0px !important;
}
[data-v-c979e764] .galleria-thumbnail {
    border-radius: 25px;
    max-height: 105px !important;
}
[data-v-c979e764] .galleria-thumbnail-content {
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0px !important;
    height: 140px !important;
    padding: 0px !important;
}
.edit-controls[data-v-c979e764] {
    height: 100px !important;
    max-height: 100px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.left-controls[data-v-c979e764],
  .center-controls[data-v-c979e764],
  .right-controls[data-v-c979e764] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.center-controls[data-v-c979e764] {
    flex: 1;
    justify-content: center;
}
.control-button[data-v-c979e764] {
    width: 3rem !important;
    min-width: 3rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
    font-size: 1.25rem !important;
    border: 3px solid;
}
.confirm-button[data-v-c979e764] {
    width: 4rem !important;
    min-width: 4rem !important;
    height: 4rem !important;
    min-height: 4rem !important;
    font-size: 1.75rem !important;
}
.delete-button[data-v-c979e764] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: var(--p-warning-400) !important;
}
.crop-button[data-v-c979e764] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: rgba(256, 256, 256, 0.4) !important;
}
.add-button[data-v-c979e764] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: rgba(256, 256, 256, 0.4) !important;
}
.retake-button[data-v-c979e764] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: rgba(256, 256, 256, 0.4) !important;
}
.confirm-button[data-v-c979e764] {
    background: rgba(256, 256, 256, 0) !important;
    border-color: rgba(256, 256, 256, 0.8) !important;
}
.confirm-button.confirm-disabled[data-v-c979e764] {
    opacity: 0.5 !important;
    border-color: rgba(256, 256, 256, 0.3) !important;
    cursor: not-allowed !important;
}
.control-button[data-v-c979e764]:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}
.control-button[data-v-c979e764]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.control-button[data-v-c979e764]:disabled:hover {
    transform: none;
}
.confirm-button.confirm-disabled[data-v-c979e764]:hover {
    transform: none !important;
}

.image-upload[data-v-91695c97] {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.upload-methods[data-v-91695c97] {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.upload-method-button[data-v-91695c97] {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}

  /* Progress Overlay Styles */
.upload-progress-overlay[data-v-91695c97] {
    border-radius: 25px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.status-bar-spacer[data-v-91695c97] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    flex-shrink: 0;
}
.upload-progress-container[data-v-91695c97] {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    min-width: 400px;
    max-width: 500px;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.upload-progress-header[data-v-91695c97] {
    text-align: center;
    margin-bottom: 2rem;
}
.upload-progress-title[data-v-91695c97] {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}
.upload-progress-subtitle[data-v-91695c97] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}
.upload-progress-content[data-v-91695c97] {
    margin-bottom: 2rem;
}
.current-image-progress[data-v-91695c97],
  .overall-progress[data-v-91695c97] {
    margin-bottom: 1.5rem;
}
.overall-progress[data-v-91695c97] {
    margin-bottom: 0;
}
.progress-label[data-v-91695c97] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.progress-bar-container[data-v-91695c97] {
    width: 100%;
}
.progress-bar-bg[data-v-91695c97] {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.progress-bar-fill[data-v-91695c97] {
    height: 100%;
    background: linear-gradient(
      90deg,
      var(--p-primary-700),
      var(--p-primary-900)
    );
    border-radius: 6px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}
.progress-bar-fill.overall[data-v-91695c97] {
    background: linear-gradient(
      90deg,
      var(--p-primary-200),
      var(--p-primary-400)
    );
}
.progress-bar-fill[data-v-91695c97]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%
    );
    animation: shimmer-91695c97 2s infinite;
}
@keyframes shimmer-91695c97 {
0% {
      transform: translateX(-100%);
}
100% {
      transform: translateX(100%);
}
}
.upload-progress-footer[data-v-91695c97] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.background-button[data-v-91695c97] {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}
.background-button[data-v-91695c97]:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.background-button[data-v-91695c97]:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

.spatial-card-container[data-v-bc18a7d7] {
    width: var(--card-width);
    height: var(--card-height);
    perspective: 1000px;
    display: inline-block;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 1;
}
.spatial-card-container[data-v-bc18a7d7]:hover {
    transform: scale(1.02);
}
.spatial-card[data-v-bc18a7d7] {
    width: var(--card-inner-width);
    aspect-ratio: var(--card-aspect-ratio);
    position: relative;
    transform-style: preserve-3d;
    transform: scale3d(1, 1, 1) rotateX(var(--rot-x)) rotateY(var(--rot-y))
      rotateZ(var(--rot-z));
    transition: transform 0.5s ease-out;
    overflow: var(--card-overflow);
    border-radius: 10px;
    z-index: 2;
}

  /* Curved drop shadow effect using two overlapping shadows */
.spatial-card[data-v-bc18a7d7]::before {
    content: '';
    position: absolute;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    width: 60%;
    height: 60%;
    transform: skewY(-8.5deg);
    transform-origin: right;
    bottom: 5px;
    left: 0px;
    border-radius: 10px;
    filter: blur(5px);
    opacity: var(--show-shadows, 1);
    z-index: -1;
    transition: opacity 0.5s ease-out;
}
.spatial-card[data-v-bc18a7d7]::after {
    content: '';
    position: absolute;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
    width: 60%;
    height: 60%;
    transform: skewY(8.5deg);
    transform-origin: left;
    bottom: 5px;
    right: 0px;
    border-radius: 10px;
    filter: blur(5px);
    opacity: var(--show-shadows, 1);
    z-index: -1;
    transition: opacity 0.5s ease-out;
}
.layer[data-v-bc18a7d7] {
    position: absolute;
    inset: 0;
    object-fit: cover; /* handles any varying aspect ratios */
    backface-visibility: hidden;
    user-select: none;
    pointer-events: none; /* layers never intercept pointer */
    width: 100%;
    height: 100%;
}
.mask[data-v-bc18a7d7] {
    mask-image: var(--mask-img);
    mask-size: cover;
}
.foil[data-v-bc18a7d7] {
    mix-blend-mode: color-dodge;
    opacity: calc(var(--foil-opacity) * 1);
    filter: saturate(var(--foil-saturation)) invert(1);
    mask: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--foil-shine-start),
      rgba(255, 255, 255, 1) var(--foil-shine-middle),
      rgba(255, 255, 255, 0) var(--foil-shine-end),
      rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--foil-shine-start),
      rgba(255, 255, 255, 1) var(--foil-shine-middle),
      rgba(255, 255, 255, 0) var(--foil-shine-end),
      rgba(255, 255, 255, 0) 100%
    );
    transition:
      mask 0.1s ease-out,
      -webkit-mask 0.1s ease-out;
}
.glow[data-v-bc18a7d7] {
    background-image: radial-gradient(
      circle at var(--glow-x) var(--glow-y),
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(0, 0, 0, 0.08) 65%,
      transparent 100%
    );
    transition: background-position 0.1s;
    mix-blend-mode: overlay;
}

.layer[data-v-9e1be745] {
    position: absolute;
    inset: 0;
    object-fit: cover; /* handles any varying aspect ratios */
    backface-visibility: hidden;
    user-select: none;
    pointer-events: none; /* layers never intercept pointer */
    width: 100%;
    height: 100%;
}
.mask[data-v-9e1be745] {
    mask-image: var(--mask-img);
    mask-size: cover;
}
.foil[data-v-9e1be745] {
    mix-blend-mode: color-dodge;
    opacity: calc(var(--foil-opacity) * 1);
    filter: saturate(var(--foil-saturation)) invert(1);
    mask: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--foil-shine-start),
      rgba(255, 255, 255, 1) var(--foil-shine-middle),
      rgba(255, 255, 255, 0) var(--foil-shine-end),
      rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--foil-shine-start),
      rgba(255, 255, 255, 1) var(--foil-shine-middle),
      rgba(255, 255, 255, 0) var(--foil-shine-end),
      rgba(255, 255, 255, 0) 100%
    );
    transition:
      mask 0.1s ease-out,
      -webkit-mask 0.1s ease-out;
}
.glow[data-v-9e1be745] {
    background-image: radial-gradient(
      circle at var(--glow-x) var(--glow-y),
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(0, 0, 0, 0.08) 65%,
      transparent 100%
    );
    transition: background-position 0.1s;
    mix-blend-mode: overlay;
}

  /* Signature overlay styling */
.signature[data-v-9e1be745] {
    position: absolute;
    width: 25%;
    height: auto;
    aspect-ratio: 1/1;
    transform-origin: bottom right;
    transform: translate(305%, 290%) rotate(-15deg);
    z-index: 10; /* Higher z-index to appear above other layers */
}

  /* Optional white drop-shadow that follows opaque pixels of the PNG */
.signature--shadow[data-v-9e1be745] {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

  /* Loading Card Styling */
.loading-card[data-v-9e1be745] {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--p-surface-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--p-surface-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.loading-content[data-v-9e1be745] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.loading-text[data-v-9e1be745] {
    color: var(--p-surface-50);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.afs-overlay[data-v-64510856] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.afs-top-actions[data-v-64510856] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}
.status-bar-spacer[data-v-64510856] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    flex-shrink: 0;
}
.afs-content[data-v-64510856] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.afs-slots[data-v-64510856] {
    color: white;
    text-align: center;
    font-weight: 600;
}
.afs-fade-enter-active[data-v-64510856],
  .afs-fade-leave-active[data-v-64510856] {
    transition: opacity 200ms ease;
}
.afs-fade-enter-from[data-v-64510856],
  .afs-fade-leave-to[data-v-64510856] {
    opacity: 0;
}

.image-status-surface[data-v-58f3c131] {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(
      150deg,
      var(--p-primary-900),
      var(--p-primary-700)
    );
    position: relative;
}
.image-status-surface__image[data-v-58f3c131] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 160ms ease;
}
.image-status-surface__image--visible[data-v-58f3c131] {
    opacity: 1;
}
.image-status-surface__loading[data-v-58f3c131] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--p-primary-50);
    text-align: center;
    padding: 0.4rem;
}
.image-status-surface__loading i[data-v-58f3c131] {
    font-size: 1.08rem;
}
.image-status-surface__loading span[data-v-58f3c131] {
    font-size: 0.68rem;
    font-weight: 700;
    opacity: 0.95;
}
.image-status-surface__missing[data-v-58f3c131] {
    position: absolute;
    inset: 0;
    color: color-mix(in srgb, var(--p-primary-50) 88%, transparent);
    opacity: 0.95;
    /* pulse opacity in and out */
    animation: pulse-opacity-58f3c131 2s ease-in-out infinite;
    /* no click events */
    pointer-events: none;
}
@keyframes pulse-opacity-58f3c131 {
0% {
      opacity: 0.5;
}
50% {
      opacity: 1;
}
100% {
      opacity: 0.5;
}
}
.image-status-surface__missing-icon[data-v-58f3c131] {
    position: absolute;
    pointer-events: none;
}
.image-status-surface__missing-text[data-v-58f3c131] {
    position: absolute;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.asset-card[data-v-caff44bf] {
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
}
.asset-card[data-v-caff44bf]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.asset-card.no-card[data-v-caff44bf] {
    box-shadow: none;
}
.asset-card.no-card[data-v-caff44bf]:hover {
    transform: none;
    box-shadow: none;
}
.image-container[data-v-caff44bf] {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.drag-handle[data-v-caff44bf] {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 5;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    opacity: 0.5;
    touch-action: none;
}
  /* Gleam animation when active */
.gleam-overlay[data-v-caff44bf] {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    overflow: hidden;
}
.gleam-overlay[data-v-caff44bf]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    animation: gleam-caff44bf 4s ease-out infinite;
    animation-delay: 1.6s;
}
@keyframes gleam-caff44bf {
0% {
      left: -120%;
      opacity: 0;
}
20% {
      opacity: 1;
}
40% {
      left: 120%;
      opacity: 0;
}
100% {
      left: 120%;
      opacity: 0;
}
}
.afs-title[data-v-caff44bf] {
    font-size: 1.2rem;
}
.afs-subtitle[data-v-caff44bf] {
    opacity: 0.85;
}
.afs-change-avatar-button[data-v-caff44bf] {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

  /* Status Overlays */
.status-overlay[data-v-caff44bf] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 20;
    color: white;
}
.status-content[data-v-caff44bf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem;
}
.status-text[data-v-caff44bf] {
    font-size: 0.75rem;
    font-weight: 600;
}
.status-content.failed[data-v-caff44bf] {
    color: var(--p-red-400);
}

  /* Long press overlay visuals (mirrors SeasonAssetCard) */
.long-press-overlay-container[data-v-caff44bf] {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    z-index: 50;
}
.long-press-overlay-fill[data-v-caff44bf] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0.35) 100%
    );
    opacity: 0.5;
    mix-blend-mode: screen;
    transition: width 1.5s linear;
}

.expandable-search[data-v-49164278] {
    position: relative;
    width: 40px;
    max-width: 100%;
    height: 40px;
    overflow: visible;
    transition:
      width 0.26s ease,
      box-shadow 0.2s ease;
}
.expandable-search-open[data-v-49164278] {
    width: 100%;
}
.expandable-search-shell[data-v-49164278] {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid var(--p-primary-500);
    background: var(--p-surface-0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scaleX(0.5);
    transform-origin: right center;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
}
.expandable-search-open .expandable-search-shell[data-v-49164278] {
    opacity: 1;
    transform: scaleX(1);
    pointer-events: auto;
}
.expandable-search-input-wrap[data-v-49164278] {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
    padding-left: 0.7rem;
    padding-right: 3.2rem;
}
.expandable-search-open .expandable-search-input-wrap[data-v-49164278] {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0.12s;
}
.expandable-search-input[data-v-49164278] {
    width: 100%;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    height: 100%;
}
.expandable-search-input[data-v-49164278]:focus {
    outline: none;
}
.expandable-search-button[data-v-49164278] {
    transform: translateY(0px) !important;
    position: absolute !important;
    box-shadow: none !important;
    top: 0;
    right: 0;
    z-index: 2;
}

.edit-asset-dialog[data-v-93dd4947] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 400px;
}
.edit-asset-dialog.prompt-mode[data-v-93dd4947] {
    flex-direction: row;
    align-items: flex-start;
}
.image-section[data-v-93dd4947] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.prompt-mode .image-section[data-v-93dd4947] {
    width: 300px;
    flex-shrink: 0;
}
.prompt-mode .form-section[data-v-93dd4947] {
    flex: 1;
    width: 100%;
}
.current-image[data-v-93dd4947] {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--p-surface-border);
}
.meta-card[data-v-93dd4947] {
    width: 100%;
    background: var(--p-surface-100);
    border: 1px solid var(--p-surface-border);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    color: var(--p-text-muted);
    font-size: 0.85rem;
    line-height: 1.2;
}
.meta-line[data-v-93dd4947] {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.preview-image[data-v-93dd4947] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-image-placeholder[data-v-93dd4947] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p-text-muted);
    font-size: 2rem;
    background: var(--p-surface-100);
}
.form-section[data-v-93dd4947] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.field[data-v-93dd4947] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.field label[data-v-93dd4947] {
    font-weight: 500;
    color: var(--p-text-color);
}
.dialog-footer[data-v-93dd4947] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
@media (max-width: 768px) {
.edit-asset-dialog.prompt-mode[data-v-93dd4947] {
      flex-direction: column;
      align-items: center;
}
.prompt-mode .image-section[data-v-93dd4947] {
      width: 100%;
}
.edit-asset-dialog[data-v-93dd4947] {
      min-width: 300px;
}
.current-image[data-v-93dd4947] {
      width: 120px;
      height: 120px;
}
}

.video-container[data-v-72f589b2] {
    position: relative;
    width: 280px;
    height: 280px;
    background: var(--p-surface-100);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--p-surface-400);
}
.video-container--unstyled[data-v-72f589b2] {
    width: min(100%, 420px);
    height: min(100%, 420px);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}
.video-container--unstyled.video-container--preview-active[data-v-72f589b2],
  .video-container--unstyled.video-container--has-image[data-v-72f589b2] {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 28px
      color-mix(in srgb, var(--p-primary-800) 18%, transparent);
}
.selection-row[data-v-72f589b2] {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
}
.selection-option-group[data-v-72f589b2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 100px;
    max-width: 100px;
}
.selection-option[data-v-72f589b2] {
    flex: 1;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 5rem !important;
    gap: 0.5rem;
}
.selection-option-icon[data-v-72f589b2] {
    font-size: 2.25rem;
    color: inherit;
}
.selection-option-label[data-v-72f589b2] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--p-surface-700);
}
.selection-divider[data-v-72f589b2] {
    width: 1px;
    height: 75%;
    align-self: center;
    background: var(--p-surface-300);
    flex-shrink: 0;
}
.video-preview[data-v-72f589b2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    background: var(--p-surface-950);
    aspect-ratio: 1/1;
    border-radius: 1rem;
}
.video-preview.mirrored[data-v-72f589b2] {
    transform: scaleX(-1);
}
.video-preview-hidden[data-v-72f589b2] {
    opacity: 0;
}
.placeholder-overlay[data-v-72f589b2],
  .initializing-overlay[data-v-72f589b2] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--p-surface-100);
    border-radius: 0.75rem;
}
.initializing-overlay[data-v-72f589b2] {
    flex-direction: column;
    gap: 0.75rem;
}
.placeholder-icon[data-v-72f589b2] {
    font-size: 2.25rem;
    color: var(--p-surface-400);
}
.initializing-spinner[data-v-72f589b2] {
    font-size: 1.875rem;
    color: var(--p-primary-500);
}
.initializing-text[data-v-72f589b2] {
    font-size: 0.875rem;
    color: var(--p-surface-700);
}
.capture-button-wrap[data-v-72f589b2] {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    overflow: visible;
}
.switch-camera-button-wrap[data-v-72f589b2] {
    position: absolute;
    right: 0.75rem;
    bottom: 1rem;
    z-index: 30;
}
.capture-button[data-v-72f589b2] {
    border-radius: 50% !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    padding: 0 !important;
    background: color-mix(in srgb, var(--p-surface-0) 90%, transparent);
    color: var(--p-surface-950) !important;
    opacity: 0.95;
    border: 3px solid color-mix(in srgb, var(--p-surface-950) 20%, var(--p-surface-0))
      !important;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    z-index: 100;
}
.capture-button[data-v-72f589b2]:hover {
    opacity: 1;
}
.capture-button[data-v-72f589b2] .p-button-icon {
    color: currentColor !important;
    font-size: 1.125rem;
}
.switch-camera-button[data-v-72f589b2] {
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 9999px !important;
    background: color-mix(in srgb, var(--p-surface-0) 88%, transparent);
    border: 1px solid color-mix(in srgb, var(--p-surface-0) 90%, transparent) !important;
    backdrop-filter: blur(4px);
}
.captured-wrap[data-v-72f589b2] {
    position: absolute;
    inset: 0;
    background: var(--p-surface-950);
    z-index: 20;
}
.captured-preview[data-v-72f589b2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.captured-preview.mirrored[data-v-72f589b2] {
    transform: scaleX(-1);
}
.captured-actions[data-v-72f589b2] {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
}
.overlay-canvas[data-v-72f589b2] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 1rem;
}
.overlay-canvas.mirrored[data-v-72f589b2] {
    transform: scaleX(-1);
}
.face-not-detected-badge[data-v-72f589b2] {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--p-surface-0);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 10;
}
.face-not-detected-badge .badge-icon[data-v-72f589b2] {
    margin-right: 0.5rem;
}
.face-not-detected-badge.failure[data-v-72f589b2] {
    background: var(--p-danger-500);
}
.face-not-detected-badge.partial[data-v-72f589b2] {
    background: var(--p-warning-500);
}
.face-not-detected-badge.processing[data-v-72f589b2] {
    background: var(--p-primary-500);
}
.face-not-detected-badge--clickable[data-v-72f589b2] {
    cursor: pointer;
}

.video-container[data-v-34740190] {
    position: relative;
    width: 280px;
    height: 280px;
    background: var(--p-surface-100);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-v-34740190] .dark .video-container {
    background: var(--p-surface-800);
}
.video-preview[data-v-34740190] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    transition: opacity 0.3s ease;
    background: #000;
}
.captured-preview[data-v-34740190] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.captured-preview.mirrored[data-v-34740190] {
    transform: scaleX(-1);
}
.overlay-canvas[data-v-34740190] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: scaleX(-1);
}
.face-not-detected-badge[data-v-34740190] {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 10;
}
.face-not-detected-badge.success[data-v-34740190] {
    background: var(--p-help-500);
}
.face-not-detected-badge.failure[data-v-34740190] {
    background: var(--p-danger-500);
}
.face-not-detected-badge.partial[data-v-34740190] {
    background: var(--p-warning-500);
}
.face-not-detected-badge.processing[data-v-34740190] {
    background: var(--p-primary-500);
}
.success-icon-container[data-v-34740190] {
    background: var(--p-success-50);
}
.text-error[data-v-34740190] {
    color: var(--p-error-500);
}
.text-success[data-v-34740190] {
    color: var(--p-success-500);
}
.pr-assets-container[data-v-34740190] {
    max-height: 200px;
    overflow-y: auto;
    padding: 4px;
    border-radius: 12px;
    background: var(--p-surface-50);
}

.locker-loading[data-v-e8224229] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    min-height: 60px;
}
.locker-loading-box[data-v-e8224229] {
    border-radius: 0.9rem;
}
.locker-loading-pill[data-v-e8224229] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--p-surface-0);
    border: 1px solid var(--p-surface-200);
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--p-primary-500);
    font-weight: 600;
    font-size: 0.9rem;
}
.locker-window[data-v-e8224229] {
    position: relative;
    width: 100%;
    max-width: 1024px;
}
.locker-window--with-search[data-v-e8224229] {
    padding-bottom: 4.4rem;
}
.locker-bottom-search-wrap[data-v-e8224229] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 15;
}
.locker-bottom-search[data-v-e8224229] {
    pointer-events: auto;
    padding: 0 0.75rem 0.6rem;
    display: flex;
    justify-content: flex-end;
}
.locker-bottom-search[data-v-e8224229] .expandable-search {
    width: min(100%, 24rem);
}
.locker-container--search-mask[data-v-e8224229] {
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 92%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 92%,
      rgba(0, 0, 0, 0) 100%
    );
}
.locker-container[data-v-e8224229] {
    display: grid;
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--grid-size), 1fr)
    ) !important;
    gap: var(--grid-gap) !important;
}
.drag-ghost[data-v-e8224229] {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(var(--x, 0px), var(--y, 0px));
    z-index: 1000;
    width: var(--grid-size);
    height: var(--grid-size);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}
.drag-ghost img[data-v-e8224229] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sortable-drag[data-v-e8224229] {
    max-width: var(--grid-size) !important;
    max-height: var(--grid-size) !important;
}
.locker-item[data-v-e8224229] {
    width: 100% !important;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
}
.asset-wrapper[data-v-e8224229] {
    position: relative;
    display: block;
}
.asset-visibility-anchor[data-v-e8224229] {
    width: 100%;
}
.asset-card-lazy-placeholder[data-v-e8224229] {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--p-primary-50) 26%, transparent);
    background: linear-gradient(
      150deg,
      var(--p-primary-900),
      var(--p-primary-700)
    );
    color: var(--p-primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.visibility-watermark[data-v-e8224229] {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    pointer-events: none;
    color: var(--p-surface-0);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.global-asset-inactive[data-v-e8224229] .asset-card {
    filter: grayscale(1);
}
.edit-btn[data-v-e8224229] {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 10 !important;
    opacity: 0.7 !important;
    width: 2rem !important;
    height: 2rem !important;
}
.delete-btn[data-v-e8224229] {
    position: absolute !important;
    bottom: 3px !important;
    right: 3px !important;
    z-index: 20 !important;
    opacity: 0.7 !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}
.apply-avatar-btn[data-v-e8224229] {
    position: absolute !important;
    bottom: 30px !important;
    right: 3px !important;
    z-index: 20 !important;
    opacity: 0.7 !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}
.select-highlight[data-v-e8224229] {
    box-shadow: 0 0 0 4px var(--p-primary-500) !important;
    border-radius: 12px;
}
.selection-toolbar[data-v-e8224229] {
    display: flex;
    justify-content: space-between;
    margin: 0 0 12px 0;
    padding: 0 12px;
    border-radius: 12px;
}
.selection-toolbar .left[data-v-e8224229] {
    display: flex;
    align-items: center;
    gap: 8px;
}
.selection-toolbar .right[data-v-e8224229] {
    display: flex;
    align-items: center;
    gap: 8px;
}
.select-checkbox[data-v-e8224229] {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    z-index: 10 !important;
}
.select-all-checkbox[data-v-e8224229] {
    width: 1.5rem !important;
    height: 1.5rem !important;
}
.count[data-v-e8224229] {
    font-size: 0.8rem;
    color: var(--p-surface-600);
}
.locker-ghost[data-v-e8224229] {
    opacity: 0.6;
}
.locker-drop-placeholder[data-v-e8224229] {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    border: 2px dashed var(--p-surface-50);
    background: transparent;
}
.empty-state[data-v-e8224229] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--p-surface-600);
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.75rem;
}
.empty-icon[data-v-e8224229] {
    font-size: 2rem;
    opacity: 0.8;
    color: var(--p-primary-0);
}
.empty-title[data-v-e8224229] {
    padding-top: 10px;
    padding-bottom: 20px;
    font-weight: 700;
    color: var(--p-surface-100);
}
.empty-subtitle[data-v-e8224229] {
    color: var(--p-surface-300);
}
.add-card[data-v-e8224229] {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    border: 2px dashed var(--p-surface-200);
    color: var(--p-surface-50);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.add-card[data-v-e8224229]:hover {
    box-shadow: 0 0 0 2px var(--p-primary-500);
    background: var(--p-primary-500);
}

.asset-selector-content[data-v-f8d7065a] {
    border-radius: 12px;
    margin: -0rem -0.5rem 0 -0.5rem;
    padding: 0.5rem;
    display: block;
}
.asset-selector-content.surface[data-v-f8d7065a] {
    background: var(--p-surface-0);
}
.asset-selector-content.teal[data-v-f8d7065a] {
    background: var(--p-brand-500);
}
.asset-selector-content.inline[data-v-f8d7065a] {
    margin: 0;
}
.asset-selector-inline[data-v-f8d7065a] {
    width: 100%;
    height: 100%;
}

.sticker-icon[data-v-84485422] {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
}

.asset-selector-container[data-v-64cc1127] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 0, 0) !important;
}
.attachment-menu[data-v-64cc1127] {
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Keep these components mounted but invisible */
.hidden-mount[data-v-64cc1127] {
    display: none;
}
.speed-dial-list-open[data-v-64cc1127] {
    background-color: var(--p-surface-0) !important;
    opacity: 1 !important;
    box-shadow: 0 0 40px 5px var(--p-surface-0) !important;
    height: 9.5rem !important;
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
}
.speed-dial-list-closed[data-v-64cc1127] {
    display: none;
}
.attachment-speed-dial[data-v-64cc1127] {
    position: relative;
    background-color: red;
}

  /* Ensure the SpeedDial doesn't interfere with chat input layout */
[data-v-64cc1127] .p-speeddial {
    position: static;
}

  /* Dynamic positioning is handled via pt:list:style */
.attachment-item[data-v-64cc1127] {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.attachment-item-button[data-v-64cc1127] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}
.attachment-item-button[data-v-64cc1127]:hover {
    background-color: #e9ecef;
}

.edit-asset-dialog[data-v-d750673e] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 400px;
}
.image-section[data-v-d750673e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.current-image[data-v-d750673e] {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--p-surface-border);
}
.meta-card[data-v-d750673e] {
    width: 100%;
    background: var(--p-surface-100);
    border: 1px solid var(--p-surface-border);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    color: var(--p-text-muted);
    font-size: 0.85rem;
    line-height: 1.2;
}
.meta-line[data-v-d750673e] {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.preview-image[data-v-d750673e] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-image-placeholder[data-v-d750673e] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p-text-muted);
    font-size: 2rem;
    background: var(--p-surface-100);
}
.form-section[data-v-d750673e] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.field[data-v-d750673e] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.field label[data-v-d750673e] {
    font-weight: 500;
    color: var(--p-text-color);
}
.dialog-footer[data-v-d750673e] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
@media (max-width: 768px) {
.edit-asset-dialog[data-v-d750673e] {
      min-width: 300px;
}
.current-image[data-v-d750673e] {
      width: 120px;
      height: 120px;
}
}

.season-asset-card[data-v-2d53b4d3] {
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.season-asset-card[data-v-2d53b4d3]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.season-asset-card.locked[data-v-2d53b4d3] {
    filter: grayscale(0.2) brightness(0.9);
    opacity: 0.9;
}
.season-asset-card.subscription-locked[data-v-2d53b4d3] {
    filter: grayscale(0.4) brightness(0.85);
}
.season-asset-card.owned[data-v-2d53b4d3] {
    border: 3px solid #fde68a;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    position: relative;
}

  /* Gleam / shine effect similar to XPToast */
.season-asset-card.owned[data-v-2d53b4d3]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    pointer-events: none;
    animation: gleam-2d53b4d3 5s ease-out infinite;
    animation-delay: 2.2s;
}
@keyframes gleam-2d53b4d3 {
0% {
      left: -120%;
      opacity: 0;
}
15% {
      opacity: 1;
}
30% {
      left: 120%;
      opacity: 0;
}
100% {
      left: 120%;
      opacity: 0;
}
}

  /* Claimable shake/grow pulse */
.asset-image.claimable[data-v-2d53b4d3] {
    animation: pulse-wiggle-2d53b4d3 4s ease-in-out infinite;
    animation-delay: 1s;
}
@keyframes pulse-wiggle-2d53b4d3 {
0%,
    70%,
    100% {
      transform: none;
}
75% {
      transform: scale(1.03);
}
82% {
      transform: scale(1.03) rotate(-2deg);
}
89% {
      transform: scale(1.03) rotate(2deg);
}
96% {
      transform: scale(1.03) rotate(-1deg);
}
}
.asset-image-container[data-v-2d53b4d3] {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1 !important;
}
.asset-image[data-v-2d53b4d3] {
    width: 100%;
    aspect-ratio: 1/1 !important;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.asset-image.subscription-only[data-v-2d53b4d3] {
    opacity: 0.5;
}
.no-image-placeholder[data-v-2d53b4d3] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p-text-muted);
    font-size: 2rem;
}
.category-badge[data-v-2d53b4d3] {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    background: var(--p-primary-600);
    color: var(--p-surface-50);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    align-items: center;
    gap: 0.25rem;
    z-index: 20;
    max-width: 24px;
    display: flex;
    justify-content: center;
}
.subscription-badge[data-v-2d53b4d3] {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    background: var(--p-primary-500);
    color: var(--p-surface-50);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    align-items: center;
    gap: 0.25rem;
    max-width: 24px;
    display: flex;
    justify-content: center;
}
.locked-badge[data-v-2d53b4d3] {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--p-surface-50);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    align-items: center;
    gap: 0.25rem;
    max-width: 24px;
    display: flex;
    justify-content: center;
}
.edit-button[data-v-2d53b4d3] {
    position: absolute !important;
    top: 0.25rem !important;
    right: 0.25rem !important;
    background: var(--p-warning-500) !important;
    color: var(--p-surface-50) !important;
    opacity: 0.8 !important;
    transition: all 0.2s ease;
}
.edit-button[data-v-2d53b4d3]:hover {
    background: var(--p-surface-900);
    opacity: 1;
    transform: scale(1.05);
}
.sort-badge[data-v-2d53b4d3] {
    position: absolute;
    bottom: 0.25rem;
    left: 0.25rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--p-surface-50);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 500;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    text-align: center;
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.asset-info[data-v-2d53b4d3] {
    text-align: center;
}
.asset-name[data-v-2d53b4d3] {
    font-weight: 600;
    color: var(--p-text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.asset-details[data-v-2d53b4d3] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}
.asset-category[data-v-2d53b4d3] {
    color: var(--p-text-muted);
    font-size: 0.8rem;
}
.asset-xp[data-v-2d53b4d3] {
    color: var(--p-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}
.hurdle-progress[data-v-2d53b4d3] {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 6px;
    height: 12px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(253, 230, 138, 0.8);
    margin: 0 30px;
    padding: 2px 2px;
}
.hurdle-progress-fill[data-v-2d53b4d3] {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #fde68a 0%, #fbbf24 40%, #f59e0b 100%);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.6);
    transition: width 200ms ease;
    border-radius: 9999px;
    overflow: hidden;
}
.hurdle-progress-fill[data-v-2d53b4d3]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    pointer-events: none;
    animation: gleam-2d53b4d3 3.6s ease-out infinite;
    animation-delay: 1.6s;
}

  /* Long press overlay visuals */
.long-press-overlay-container[data-v-2d53b4d3] {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    z-index: 50;
}
.long-press-overlay-fill[data-v-2d53b4d3] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0.35) 100%
    );
    opacity: 0.5;
    mix-blend-mode: screen;
    transition: width 1.5s linear;
}
@media (max-width: 768px) {
.category-badge[data-v-2d53b4d3] {
      top: 0.25rem;
      left: 0.25rem;
      padding: 0.2rem 0.4rem;
      font-size: 0.7rem;
}
.sort-badge[data-v-2d53b4d3] {
      bottom: 0.25rem;
      left: 0.25rem;
      padding: 0.2rem 0.4rem;
      font-size: 0.7rem;
      min-width: 20px;
}
}

.features-grid-container[data-v-3c055476] {
    width: 100%;
    position: relative; /* Needed for absolute overlay positioning */
}
.features-header[data-v-3c055476] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;

    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0.25rem;
    width: 100%;
}
.features-header[data-v-3c055476]:hover {
    background: var(--p-surface-100) !important;
}
.features-title[data-v-3c055476] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--p-surface-700) !important;
}
.features-header i[data-v-3c055476] {
    font-size: 0.75rem;
    color: var(--p-surface-500) !important;
    transition: transform 0.2s ease;
}
.features-header.expanded i[data-v-3c055476] {
    transform: rotate(180deg);
}
.features-grid[data-v-3c055476] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    padding: 0.75rem 0;
}
.features-grid.blurred[data-v-3c055476] {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}
.feature-item[data-v-3c055476] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: help;
}
.feature-item[data-v-3c055476]:hover {
    background: var(--p-surface-50) !important;
    transform: translateY(-1px);
}
.feature-icon[data-v-3c055476] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--p-primary-50) !important;
    border-radius: 50%;
    margin-bottom: 0.25rem;
}
@media (prefers-color-scheme: dark) {
.feature-icon[data-v-3c055476] {
      background: var(--p-primary-700) !important;
}
.feature-icon[data-v-3c055476] i {
      color: var(--p-surface-950) !important;
}
}
@media (prefers-color-scheme: light) {
.feature-icon[data-v-3c055476] i {
      font-size: 0.875rem;
      color: var(--p-primary-600) !important;
}
}
.feature-text[data-v-3c055476] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--p-surface-700) !important;
    line-height: 1.2;
}
.features-collapse-enter-active[data-v-3c055476],
  .features-collapse-leave-active[data-v-3c055476] {
    transition: all 0.3s ease;
    overflow: hidden;
}
.features-collapse-enter-from[data-v-3c055476],
  .features-collapse-leave-to[data-v-3c055476] {
    max-height: 0;
    opacity: 0;
}
.features-collapse-enter-to[data-v-3c055476],
  .features-collapse-leave-from[data-v-3c055476] {
    max-height: 200px;
    opacity: 0.5;
}

  /* Feature Detail Overlay */
.feature-overlay-enter-active[data-v-3c055476],
  .feature-overlay-leave-active[data-v-3c055476] {
    transition: opacity 0.3s ease;
}
.feature-overlay-enter-from[data-v-3c055476],
  .feature-overlay-leave-to[data-v-3c055476] {
    opacity: 0;
}
.feature-overlay[data-v-3c055476] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    cursor: pointer;
}
.feature-overlay-content[data-v-3c055476] {
    cursor: default;
    background: var(--p-surface-0) !important;
    color: var(--p-surface-900);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    max-width: 640px;
    margin: 0 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.feature-overlay-icon[data-v-3c055476] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--p-primary-50) !important;
    margin: 0 auto 0.75rem auto;
    position: relative;
    overflow: hidden;
}
.feature-overlay-icon i[data-v-3c055476] {
    font-size: 2.25rem;
    color: var(--p-primary-600) !important;
}
.feature-overlay-title[data-v-3c055476] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--p-surface-800) !important;
}
.feature-overlay-description[data-v-3c055476] {
    font-size: 0.95rem;
    color: var(--p-surface-700) !important;
    line-height: 1.4;
}

  /* Gleam / shine effect reused from SeasonAssetCard */
.icon-gleam[data-v-3c055476]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    pointer-events: none;
    animation: gleam-3c055476 4.2s ease-out infinite;
    animation-delay: 1.2s;
}
@keyframes gleam-3c055476 {
0% {
      left: -120%;
      opacity: 0;
}
15% {
      opacity: 1;
}
30% {
      left: 120%;
      opacity: 0;
}
100% {
      left: 120%;
      opacity: 0;
}
}

.sr-loading[data-v-acdf41ef] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 0 0.5rem 0;
}
.loading-text[data-v-acdf41ef] {
    font-size: 14px;
    font-weight: 400;
    color: var(--p-text-color);
    margin-top: 0.75rem;
    opacity: 0.9;
}

  /* Loader */
.loader[data-v-acdf41ef] {
    width: 0;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: currentColor;
    color: var(--p-text-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    animation: animFw-acdf41ef 8s linear infinite;
}
.loader[data-v-acdf41ef]::after,
  .loader[data-v-acdf41ef]::before {
    content: '';
    width: 10px;
    height: 1px;
    background: currentColor;
    position: absolute;
    top: 9px;
    right: -2px;
    opacity: 0;
    transform: rotate(-45deg) translateX(0px);
    box-sizing: border-box;
    animation: coli1-acdf41ef 0.3s linear infinite;
}
.loader[data-v-acdf41ef]::before {
    top: -4px;
    transform: rotate(45deg);
    animation: coli2-acdf41ef 0.3s linear infinite;
}
@keyframes animFw-acdf41ef {
0% {
      width: 0;
      opacity: 0.7;
}
100% {
      width: 100%;
      opacity: 1;
}
}
@keyframes coli1-acdf41ef {
0% {
      transform: rotate(-45deg) translateX(0px);
      opacity: 0.7;
}
100% {
      transform: rotate(-45deg) translateX(-45px);
      opacity: 0;
}
}
@keyframes coli2-acdf41ef {
0% {
      transform: rotate(45deg) translateX(0px);
      opacity: 1;
}
100% {
      transform: rotate(45deg) translateX(-45px);
      opacity: 0.7;
}
}
.subscription-features-grid-container[data-v-acdf41ef] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.subscription-features-grid[data-v-acdf41ef] {
    max-width: 400px;
    width: 100%;
}
.dialog-body-content[data-v-acdf41ef] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.actions[data-v-acdf41ef] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.qr-section[data-v-3975db37] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-title[data-v-3975db37] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--p-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-container[data-v-3975db37] {
    padding: 1rem;
    background-color: white;
    border-radius: 1rem;
    border: 2px solid var(--p-surface-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.qr-code[data-v-3975db37] {
    display: block;
}

  /* Code Expiry Styles */
.code-expiry-section[data-v-3975db37] {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.code-expiry[data-v-3975db37] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
}
.code-expiry i[data-v-3975db37] {
    color: var(--p-primary-500);
}
.expiry-text[data-v-3975db37] {
    color: var(--p-primary-600);
}
.expiry-text.expired[data-v-3975db37] {
    color: var(--p-error-600);
    font-weight: 600;
}
.instructions[data-v-3975db37] {
    max-width: 400px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
.instructions-title[data-v-3975db37] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--p-surface-700);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.instructions-list[data-v-3975db37] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.instructions-list li[data-v-3975db37] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--p-surface-600);
    font-size: 0.9rem;
}
.instructions-list li i[data-v-3975db37] {
    color: var(--p-primary-500);
    width: 1.2rem;
}

  /* Reason card - prominent help style */
.reason-card[data-v-3975db37] {
    background-color: var(--p-help-50);
    border: 2px solid var(--p-help-300);
}
.reason-card[data-v-3975db37] .p-card-body {
    padding: 1rem;
}
.reason-content[data-v-3975db37] {
    display: flex;
    align-items: flex-start;
    color: var(--p-help-700);
    font-weight: 500;
    font-size: 0.95rem;
}
.reason-content i[data-v-3975db37] {
    color: var(--p-help-600);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

  /* Benefits card */
.benefits-card[data-v-3975db37] {
    background-color: var(--p-surface-50);
    border: 1px solid var(--p-surface-200);
}
.benefits-card[data-v-3975db37] .p-card-body {
    padding: 1rem;
}
.benefits-content[data-v-3975db37] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.benefits-title[data-v-3975db37] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--p-primary-700);
    display: flex;
    align-items: center;
    margin: 0;
}
.benefits-title i[data-v-3975db37] {
    color: var(--p-primary-500);
}
.benefits-list[data-v-3975db37] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.benefits-list li[data-v-3975db37] {
    display: flex;
    align-items: center;
    color: var(--p-surface-700);
    font-size: 0.9rem;
}
.benefits-list li i[data-v-3975db37] {
    color: var(--p-primary-500);
    width: 1.2rem;
    flex-shrink: 0;
}
@media (prefers-color-scheme: dark) {
.qr-container[data-v-3975db37] {
      border-color: var(--p-surface-700);
      background-color: var(--p-surface-0);
}
.instructions-title[data-v-3975db37] {
      color: var(--p-surface-100);
}
.instructions-list li[data-v-3975db37] {
      color: var(--p-surface-300);
}
.reason-card[data-v-3975db37] {
      background-color: var(--p-help-900);
      border-color: var(--p-help-700);
}
.reason-content[data-v-3975db37] {
      color: var(--p-help-200);
}
.reason-content i[data-v-3975db37] {
      color: var(--p-help-400);
}
.benefits-card[data-v-3975db37] {
      background-color: var(--p-surface-800);
      border-color: var(--p-surface-700);
}
.benefits-title[data-v-3975db37] {
      color: var(--p-primary-300);
}
.benefits-title i[data-v-3975db37] {
      color: var(--p-primary-400);
}
.benefits-list li[data-v-3975db37] {
      color: var(--p-surface-200);
}
.benefits-list li i[data-v-3975db37] {
      color: var(--p-primary-400);
}
}

.shield-icon[data-v-5559eca2] {
    font-size: 3rem;
    color: var(--p-primary-600);
}

.age-approval-dialog-content[data-v-4bc7d03e] {
    display: flex;
    flex-direction: column;
    background-color: var(--p-surface-0);
    color: var(--p-surface-900);
}
.dialog-body[data-v-4bc7d03e] {
    padding: 0.75rem 1rem 1rem;
}
.card-header[data-v-4bc7d03e] {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid var(--p-surface-200);
    position: relative;
    min-height: 2.5rem;
}
.stage-subtitle[data-v-4bc7d03e] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--p-surface-700);
    text-align: center;
    padding-bottom: 0.5rem;
}
.back-button[data-v-4bc7d03e] {
    position: absolute !important;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.header-title[data-v-4bc7d03e] {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--p-surface-700);
}
.stage-content[data-v-4bc7d03e] {
    display: flex;
    flex-direction: column;
}
.text-block[data-v-4bc7d03e] {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--p-surface-700);
}
.list-block[data-v-4bc7d03e] {
    margin-left: 1rem;
    padding-bottom: 0.5rem;
}
.field-label[data-v-4bc7d03e] {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--p-surface-700);
    margin-bottom: 0.25rem;
}
.toggle-row[data-v-4bc7d03e] {
    display: grid;
    grid-template-columns: 1fr 100px;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.toggle-caption[data-v-4bc7d03e] {
    font-size: 0.9rem;
    color: var(--p-surface-600);
    white-space: nowrap;
    margin: 0;
    text-align: left;
    width: 100%;
}
.stripe-info-text[data-v-4bc7d03e] {
    font-size: 0.9rem;
    color: var(--p-primary-700);
    text-align: center;
}
.stripe-info-container[data-v-4bc7d03e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--p-primary-50);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--p-primary-200);
}
.stripe-info-header[data-v-4bc7d03e] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--p-primary-700);
    text-align: center;
}
.username-section[data-v-4bc7d03e] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.25rem;
}
.username-display[data-v-4bc7d03e] {
    font-size: 0.9rem;
    color: var(--p-surface-600);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.username-display[data-v-4bc7d03e]:hover {
    background-color: var(--p-surface-100);
    color: var(--p-surface-700);
}
.username-label[data-v-4bc7d03e] {
    font-size: 0.9rem;
    color: var(--p-surface-700);
    font-weight: 600;
}
.username-clipboard-icon[data-v-4bc7d03e] {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.username-display:hover .username-clipboard-icon[data-v-4bc7d03e] {
    opacity: 1;
}
.status-text[data-v-4bc7d03e] {
    font-size: 0.95rem;
    color: var(--p-surface-700);
}

  /* Teal Dialog Theme - shared across Walkthrough and Welcome dialogs */
.teal-dialog {
    background-color: var(--p-brand-500) !important;
    color: #ffffff;
}
.teal-dialog .p-dialog-header,
  .teal-dialog .p-dialog-content,
  .teal-dialog .p-dialog-footer {
    border: none !important;
    color: #ffffff;
}
.teal-dialog .p-dialog-header .p-dialog-title,
  .teal-dialog .p-dialog-header .p-dialog-header-icon,
  .teal-dialog .p-dialog-header .p-dialog-header-icon:focus,
  .teal-dialog .p-dialog-header .p-dialog-header-icon:hover {
    color: #ffffff;
}
  /* Make the main dialog content scrollbar thumb white (Chrome/WebKit) */
.teal-dialog .p-dialog-content {
    /* Ensure this is the scroll container */
    overflow-y: auto;
    /* Firefox scrollbar styling (thumb color first, then track) */
    scrollbar-width: thin;
    scrollbar-color: #ffffff transparent;
}
.teal-dialog .p-dialog-content::-webkit-scrollbar {
    width: 8px;
}
.teal-dialog .p-dialog-content::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 999px;
}
.teal-dialog .p-dialog-content::-webkit-scrollbar-track {
    background-color: transparent;
}
.teal-dialog .p-divider {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
.teal-dialog .p-dialog-close-button {
    color: #ffffff !important;
}

  /* Frosted version of Teal Dialog */
.frosted .teal-dialog {
    --blur: 25px;
    background-color: rgb(from var(--p-brand-500) r g b / 0.5) !important;
    backdrop-filter: blur(var(--blur)) !important;
    -webkit-backdrop-filter: blur(var(--blur)) !important;
    border: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}
.frosted .teal-dialog::before,
  .frosted .teal-dialog::after {
    border-radius: inherit;
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.frosted .teal-dialog::before {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    mask-image: linear-gradient(135deg, white, transparent 50%) !important;
    -webkit-mask-image: linear-gradient(
      135deg,
      white,
      transparent 50%
    ) !important;
}
.frosted .teal-dialog::after {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    mask-image: linear-gradient(135deg, transparent 50%, white) !important;
    -webkit-mask-image: linear-gradient(
      135deg,
      transparent 50%,
      white
    ) !important;
}

.completed-title[data-v-1c184ba9] {
    text-decoration: line-through;
    opacity: 0.5;
}
.walkthrough-item[data-v-1c184ba9] {
    border-bottom: 1px solid var(--p-surface-200);
    padding: 0.5rem 0;
}
.row[data-v-1c184ba9] {
    display: grid;
    grid-template-columns: 32px 1fr 24px;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.title[data-v-1c184ba9] {
    font-weight: 600;
}
.prereq[data-v-1c184ba9] {
    color: var(--p-warning-200);
    font-size: 0.85rem;
}
.details[data-v-1c184ba9] {
    padding-left: 32px;
    display: grid;
    grid-template-columns: 1fr 100px;
    width: 100%;
    gap: 0.5rem;
}
.description[data-v-1c184ba9] {
    font-size: 0.85rem;
    color: var(--p-primary-100);
    padding-top: 0.5rem;
}
.actions[data-v-1c184ba9] {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    justify-content: flex-end;
}
.driver-active .driver-overlay,.driver-active *{pointer-events:none}.driver-active .driver-active-element,.driver-active .driver-active-element *,.driver-popover,.driver-popover *{pointer-events:auto}@keyframes animate-fade-in{0%{opacity:0}to{opacity:1}}.driver-fade .driver-overlay{animation:animate-fade-in .2s ease-in-out}.driver-fade .driver-popover{animation:animate-fade-in .2s}.driver-popover{all:unset;box-sizing:border-box;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px #0006;z-index:1000000000;position:fixed;top:0;right:0;background-color:#fff}.driver-popover *{font-family:Helvetica Neue,Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif}.driver-popover-title{font:19px/normal sans-serif;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1;margin:0}.driver-popover-close-btn{all:unset;position:absolute;top:0;right:0;width:32px;height:28px;cursor:pointer;font-size:18px;font-weight:500;color:#d2d2d2;z-index:1;text-align:center;transition:color;transition-duration:.2s}.driver-popover-close-btn:hover,.driver-popover-close-btn:focus{color:#2d2d2d}.driver-popover-title[style*=block]+.driver-popover-description{margin-top:5px}.driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;font-weight:400;zoom:1}.driver-popover-footer{margin-top:15px;text-align:right;zoom:1;display:flex;align-items:center;justify-content:space-between}.driver-popover-progress-text{font-size:13px;font-weight:400;color:#727272;zoom:1}.driver-popover-footer button{all:unset;display:inline-block;box-sizing:border-box;padding:3px 7px;text-decoration:none;text-shadow:1px 1px 0 #fff;background-color:#fff;color:#2d2d2d;font:12px/normal sans-serif;cursor:pointer;outline:0;zoom:1;line-height:1.3;border:1px solid #ccc;border-radius:3px}.driver-popover-footer .driver-popover-btn-disabled{opacity:.5;pointer-events:none}:not(body):has(>.driver-active-element){overflow:hidden!important}.driver-no-interaction,.driver-no-interaction *{pointer-events:none!important}.driver-popover-footer button:hover,.driver-popover-footer button:focus{background-color:#f7f7f7}.driver-popover-navigation-btns{display:flex;flex-grow:1;justify-content:flex-end}.driver-popover-navigation-btns button+button{margin-left:4px}.driver-popover-arrow{content:"";position:absolute;border:5px solid #fff}.driver-popover-arrow-side-over{display:none}.driver-popover-arrow-side-left{left:100%;border-right-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-right{right:100%;border-left-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-top{top:100%;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.driver-popover-arrow-side-bottom{bottom:100%;border-left-color:transparent;border-top-color:transparent;border-right-color:transparent}.driver-popover-arrow-side-center{display:none}.driver-popover-arrow-side-left.driver-popover-arrow-align-start,.driver-popover-arrow-side-right.driver-popover-arrow-align-start{top:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-start,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start{left:15px}.driver-popover-arrow-align-end.driver-popover-arrow-side-left,.driver-popover-arrow-align-end.driver-popover-arrow-side-right{bottom:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-end,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end{right:15px}.driver-popover-arrow-side-left.driver-popover-arrow-align-center,.driver-popover-arrow-side-right.driver-popover-arrow-align-center{top:50%;margin-top:-5px}.driver-popover-arrow-side-top.driver-popover-arrow-align-center,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center{left:50%;margin-left:-5px}.driver-popover-arrow-none{display:none}

.walkthrough-footer[data-v-8c7d7841] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.walkthrough-completed-text-title[data-v-8c7d7841] {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.5rem;
}
.walkthrough-completed-text-description[data-v-8c7d7841] {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    padding-bottom: 0.25rem;
}
.walkthrough-completed-icon[data-v-8c7d7841] {
    font-size: 1.5rem;
    color: var(--p-primary-50);
}
.walkthrough-completed[data-v-8c7d7841] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.features-divider-text[data-v-8c7d7841] {
    font-size: 0.9rem;
    color: var(--p-primary-0);
    font-weight: 600;
    text-align: center;

    display: inline-block;
}
.divider-header[data-v-8c7d7841] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    background-color: var(--p-brand-500) !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
.expand-icon[data-v-8c7d7841] {
    color: var(--p-primary-0);
    font-size: 0.9rem;
}

  /* Allow clicks to pass through the hole: only shields & tooltip accept events */
.coach-root[data-v-855c9e51] {
    z-index: 2147483646;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}
.status-bar-spacer[data-v-855c9e51] {
    height: 55px;
    background-color: transparent;
    width: 100%;
    flex-shrink: 0;
    pointer-events: auto;
}

  /* Shields dim and block the outside area; the hole remains uncovered */
.coach-shield[data-v-855c9e51] {
    /* capture clicks */
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.55);
}
.coach-highlight[data-v-855c9e51] {
    position: fixed;
    outline: 2px solid #fff;
    box-shadow:
      0 0 0 2px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    pointer-events: none;
}
.coach-tooltip[data-v-855c9e51] {
    pointer-events: auto;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    outline: none;
}
.coach-header[data-v-855c9e51] {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 8px;
}
.coach-icon[data-v-855c9e51] {
    font-size: 18px;
    line-height: 1;
}
.coach-title[data-v-855c9e51] {
    font-size: 16px;
    margin: 0;
}
.coach-body[data-v-855c9e51] {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 8px 0 12px;
    font-size: 14px;
    line-height: 1.4;
}
.coach-text[data-v-855c9e51] {
    font-size: 14px;
    line-height: 1.4;
}
.coach-actions[data-v-855c9e51] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.coach-btn[data-v-855c9e51] {
    border: 1px solid #d0d0d0;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
}
.coach-btn.primary[data-v-855c9e51] {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}
.coach-btn.ghost[data-v-855c9e51] {
    background: #fff;
}
.coach-soft-footer[data-v-855c9e51] {
    pointer-events: auto;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #101114;
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.coach-soft-content[data-v-855c9e51] {
    display: flex;
    align-items: center;
    gap: 8px;
}
.coach-soft-help[data-v-855c9e51] {
    font-size: 18px;
}
.coach-soft-actions[data-v-855c9e51] {
    display: flex;
    gap: 8px;
}

.yy-tag-root {
    border: 1px solid transparent !important;
}
.yy-tag-root.yy-tag-root--info {
    background: var(--p-primary-100) !important;
    border-color: var(--p-primary-200) !important;
    color: var(--p-primary-700) !important;
}
.yy-tag-root.yy-tag-root--success {
    background: var(--p-green-100) !important;
    border-color: var(--p-green-200) !important;
    color: var(--p-green-700) !important;
}
.yy-tag-root.yy-tag-root--warning {
    background: var(--p-warning-100) !important;
    border-color: var(--p-warning-200) !important;
    color: var(--p-warning-800) !important;
}
.yy-tag-root.yy-tag-root--danger {
    background: var(--p-danger-100) !important;
    border-color: var(--p-danger-200) !important;
    color: var(--p-danger-700) !important;
}
.yy-tag-root.yy-tag-root--secondary {
    background: var(--p-surface-100) !important;
    border-color: var(--p-surface-300) !important;
    color: var(--p-surface-700) !important;
}
@keyframes border-angle-rotate-fa264518 {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
.user-card[data-v-fa264518] {
  width: 100%;
}
.user-card-list[data-v-fa264518] {
  padding: 0.5rem;
}
.user-meta[data-v-fa264518] {
  padding-left: 2.5rem;
}
.bio-content[data-v-fa264518] {
  white-space: pre-line;
}
.user-handle[data-v-fa264518] {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.user-attributes[data-v-fa264518] {
  border: 1px solid var(--p-surface-200);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  justify-items: left;
  align-items: left;
}
.pending-card[data-v-fa264518] {
  --border-angle: 0deg;
  --inner-bg: var(--p-surface-0);
  --border-color: var(--p-surface-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-fa264518 var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  opacity: 0.8;
}
.user-field[data-v-fa264518] {
  /* truncate text */
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
.user-avatar[data-v-fa264518] {
  min-width: 48px;
}
.user-avatar-hero[data-v-fa264518] {
  min-width: 85px;
  min-height: 85px;
  margin-bottom: 0.5rem;
}
.button-user-action[data-v-fa264518] {
  height: 1.9rem !important;
  width: 2rem !important;
}
.actions-group[data-v-fa264518] {
  /* emerge from left when hovered */
  transition: transform 0.3s ease-in-out;
}
.actions-group[data-v-fa264518]:hover {
  transform: translateX(5px);
}
.slash[data-v-fa264518] {
  position: absolute;
  width: 120%;
  height: 2px;
  background-color: currentColor;
  transform: rotate(-45deg);
  opacity: 0.8;
  pointer-events: none;
}
.online-status-badge[data-v-fa264518] {
  margin-top: 0.5rem;
}
.status-badge[data-v-fa264518] {
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.status-badge.status-online[data-v-fa264518] {
  background-color: var(--p-green-100);
  color: var(--p-green-800);
}
.status-badge.status-offline[data-v-fa264518] {
  background-color: var(--p-red-100);
  color: var(--p-red-800);
}
.status-indicator[data-v-fa264518] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-online .status-indicator[data-v-fa264518] {
  background-color: var(--p-green-500);
}
.status-offline .status-indicator[data-v-fa264518] {
  background-color: var(--p-red-500);
}.draggable-message-container[data-v-15b39805] {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.draggable-message-container.direction-left[data-v-15b39805] {
  align-items: flex-start;
}
.draggable-message-container.direction-right[data-v-15b39805] {
  align-items: flex-end;
}
.draggable-message[data-v-15b39805] {
  cursor: grab;
  user-select: none;
  position: relative;
  z-index: 1;
  touch-action: pan-y;
}
.draggable-message[data-v-15b39805]:active {
  cursor: grabbing;
}
.draggable-message[data-v-15b39805] {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 80%;
  overflow: visible;
}
.draggable-message-container.is-dragging .draggable-message[data-v-15b39805] {
  z-index: 10;
  cursor: grabbing;
}
.drag-metadata[data-v-15b39805] {
  position: absolute;
  top: calc(50% - 1rem);
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--p-surface-900);
  color: var(--p-surface-0);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 5;
  opacity: 0.7;
  animation: fadeIn 0.2s ease-in;
}
.drag-metadata.metadata-left[data-v-15b39805] {
  left: 0;
  animation: slideInLeft-15b39805 0.2s ease-in;
}
.drag-metadata.metadata-right[data-v-15b39805] {
  right: 0;
  animation: slideInRight-15b39805 0.2s ease-in;
}
@keyframes slideInLeft-15b39805 {
from {
    transform: translateX(-100%);
}
to {
    transform: translateX(0);
}
}
@keyframes slideInRight-15b39805 {
from {
    transform: translateX(100%);
}
to {
    transform: translateX(0);
}
}
.user-message-reply-template[data-v-203a696d] {
    background-color: var(--p-surface-100);
    border-left: 4px solid var(--p-primary-500);
    border-radius: 8px;
    margin: 0.2rem;
    margin-bottom: 0;
    max-height: 20vh;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}
.user-message-reply-template[data-v-203a696d]:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.reply-content-grid[data-v-203a696d] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    padding: 0.5rem;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.reply-content-grid[data-v-203a696d]:hover {
    background-color: var(--p-surface-50);
}
.reply-col-1[data-v-203a696d] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0; /* Allow text truncation */
}
.reply-username[data-v-203a696d] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-primary-600);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.reply-navigate-icon[data-v-203a696d] {
    font-size: 0.6rem;
    opacity: 0.7;
    color: var(--p-primary-500);
}
.reply-content-left[data-v-203a696d] {
    font-size: 0.875rem;
    color: var(--p-surface-900);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    max-height: 2.4em; /* 2 lines at 1.2 line-height */
}
.reply-col-2[data-v-203a696d] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 10vh;
    overflow: hidden;
}
.reply-col-2-empty[data-v-203a696d] {
    width: 0;
    padding: 0;
    margin: 0;
}
.reply-col-3[data-v-203a696d] {
    display: flex;
    align-items: center;
    justify-content: center;
}
.clear-reply-button[data-v-203a696d] {
    padding: 0.25rem !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}

.reply-text-content[data-v-b2f80db6] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reply-image-label[data-v-41dc144e] {
    font-style: italic;
    color: var(--p-text-color-secondary);
}
.reply-image-container[data-v-41dc144e] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 10vh;
    max-width: 60px;
    overflow: hidden;
    border-radius: 4px;
}
.reply-image[data-v-41dc144e] {
    max-height: 10vh;
    max-width: 60px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--p-surface-border);
}
.reply-image-placeholder[data-v-41dc144e] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--p-surface-200);
    border-radius: 4px;
    color: var(--p-text-color-secondary);
}
.reply-image-placeholder i[data-v-41dc144e] {
    font-size: 1.2rem;
}

.reply-sticker-label[data-v-0bfeea17] {
    font-style: italic;
    color: var(--p-text-color-secondary);
}
.reply-sticker-container[data-v-0bfeea17] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 10vh;
    max-width: 60px;
    overflow: hidden;
    border-radius: 4px;
}
.reply-sticker[data-v-0bfeea17] {
    max-height: 10vh;
    max-width: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--p-surface-border);
    background: transparent;
}
.reply-sticker-placeholder[data-v-0bfeea17] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--p-surface-200);
    border-radius: 4px;
    color: var(--p-text-color-secondary);
}
.reply-sticker-placeholder i[data-v-0bfeea17] {
    font-size: 1.2rem;
}
.message-metadata[data-v-37e16eb9] {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0rem;
  gap: 0.5rem;
}
.message-metadata.justify-end[data-v-37e16eb9] {
  justify-content: flex-end;
}
.message-metadata-right[data-v-37e16eb9] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(0.5rem);
}
.message-flags[data-v-37e16eb9] {
  display: flex;
  gap: 0.25rem;
}
.message-status[data-v-37e16eb9] {
  display: flex;
  gap: 0.25rem;
}
.status-icon[data-v-37e16eb9] {
  font-size: 0.75rem;
  color: var(--p-surface-600);
}
@media (prefers-color-scheme: dark) {
.status-icon[data-v-37e16eb9] {
    color: var(--p-surface-400);
}
}.user-list-item--compact[data-v-285b3b06] {
  padding: 0.5rem 0.75rem !important;
  border: none !important;
}
.user-list-item[data-v-285b3b06] {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--p-surface-200);
  transition: all 0.2s ease;
  position: relative;
}
.user-list-item--neutral[data-v-285b3b06] {
  background: var(--p-surface-0);
}
.user-list-item--neutral[data-v-285b3b06]:hover {
  border-left: 4px solid var(--p-surface-600);
  background: linear-gradient(to right, var(--p-surface-50), var(--p-surface-0));
}
.user-list-item--online[data-v-285b3b06] {
  background: var(--p-surface-0);
}
.user-list-item--online[data-v-285b3b06]:hover {
  border-left: 4px solid var(--p-primary-600);
  background: linear-gradient(to right, var(--p-primary-50), var(--p-surface-0));
}
.user-list-item--offline[data-v-285b3b06] {
  background: var(--p-surface-0);
}
.user-list-item--offline[data-v-285b3b06]:hover {
  border-left: 4px solid var(--p-danger-600);
  background: linear-gradient(to right, var(--p-danger-50), var(--p-surface-0));
}
.user-list-item .user-list-item__actions[data-v-285b3b06] {
  opacity: 0.7;
  transform: translateX(0);
  transition: all 0.2s ease;
}
.user-list-item .user-list-item__actions[data-v-285b3b06]:hover {
  opacity: 1;
}
.user-list-item__content[data-v-285b3b06] {
  display: flex;
  align-items: center;
  flex: 1;
  cursor: pointer;
  min-width: 0;
}
.user-list-item__avatar-container[data-v-285b3b06] {
  position: relative;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.user-list-item__avatar[data-v-285b3b06] {
  width: 44px;
  height: 44px;
}
.user-list-item__online-indicator[data-v-285b3b06] {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--p-surface-0);
  background: var(--p-surface-200);
  transition: background-color 0.2s ease;
}
.user-list-item__online-indicator--active[data-v-285b3b06] {
  background: var(--p-green-500);
}
.user-list-item__info[data-v-285b3b06] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.user-list-item__handle[data-v-285b3b06] {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--p-surface-900);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-list-item__name[data-v-285b3b06] {
  font-size: 0.8rem;
  color: var(--p-surface-700);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-list-item__status[data-v-285b3b06] {
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.user-list-item__status-text[data-v-285b3b06] {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--p-green-600);
  background: var(--p-green-50);
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.user-list-item__actions[data-v-285b3b06] {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (hover: none) {
.user-list-item__actions[data-v-285b3b06] {
    opacity: 1;
    transform: translateX(0);
}
}
.user-list-item-call-actions[data-v-a7e388c0] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

  /* No custom styles needed - UserListItem handles all styling */

.user-status-list[data-v-a09b4d55] {
    min-width: 280px;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
}
.status-section[data-v-a09b4d55] {
    margin-bottom: 0.5rem;
}
.status-section[data-v-a09b4d55]:last-child {
    margin-bottom: 0;
}
.section-title[data-v-a09b4d55] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.25rem 0;
    padding: 0.5rem 1rem 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--p-text-color);
    border-bottom: 1px solid var(--p-surface-200);
}
.users-list[data-v-a09b4d55] {
    display: flex;
    flex-direction: column;
}
.empty-state[data-v-a09b4d55] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    gap: 0.5rem;
}
.empty-state i[data-v-a09b4d55] {
    font-size: 2rem;
}
.empty-state p[data-v-a09b4d55] {
    margin: 0;
    font-size: 0.875rem;
}
.text-primary-500[data-v-a09b4d55] {
    color: var(--p-primary-500);
}
.text-warning-500[data-v-a09b4d55] {
    color: var(--p-warning-500);
}

  /* Custom scrollbar */
.user-status-list[data-v-a09b4d55]::-webkit-scrollbar {
    width: 6px;
}
.user-status-list[data-v-a09b4d55]::-webkit-scrollbar-track {
    background: var(--p-surface-100);
    border-radius: 3px;
}
.user-status-list[data-v-a09b4d55]::-webkit-scrollbar-thumb {
    background: var(--p-surface-400);
    border-radius: 3px;
}
.user-status-list[data-v-a09b4d55]::-webkit-scrollbar-thumb:hover {
    background: var(--p-surface-500);
}

  /* Dark mode support */
@media (prefers-color-scheme: dark) {
.section-title[data-v-a09b4d55] {
      border-bottom-color: var(--p-surface-700);
}
}

  /* Zoom-in group transition for reaction items */
.zoom-in-enter-active[data-v-270f45f5],
  .zoom-in-leave-active[data-v-270f45f5] {
    transition:
      transform 0.5s ease,
      opacity 0.2s ease;
}
  /* The zoom classes are applied to the button, but we animate the image */
.reaction-item.zoom-in-enter-active .reaction-image[data-v-270f45f5],
  .reaction-item.zoom-in-leave-active .reaction-image[data-v-270f45f5] {
    transition:
      transform 0.5s ease,
      opacity 0.2s ease;
}
.zoom-in-move[data-v-270f45f5] {
    transition: transform 0.2s ease;
}
  /* Apply transform/opacity to the emoji image only, not the count */
.reaction-item.zoom-in-enter-from .reaction-image[data-v-270f45f5],
  .reaction-item.zoom-in-leave-to .reaction-image[data-v-270f45f5] {
    transform: scale(1.6);
    opacity: 0;
}
.reaction-item.zoom-in-enter-to .reaction-image[data-v-270f45f5],
  .reaction-item.zoom-in-leave-from .reaction-image[data-v-270f45f5] {
    transform: scale(1);
    opacity: 1;
}
  /* Keep leaving items from collapsing layout during transition */
.reaction-item.zoom-in-leave-active[data-v-270f45f5] {
    position: absolute;
}
.reactions-overlay[data-v-270f45f5] {
    position: absolute;
    bottom: 0px; /* slight overlap with bubble */
    pointer-events: auto;
    width: max-content;
    max-width: min(260px, calc(100vw - 40px));
}
.reactions-overlay.inline[data-v-270f45f5] {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
}
.reactions-overlay.align-left[data-v-270f45f5] {
    left: 8px;
    right: auto;
    display: flex;
    justify-content: flex-start;
}
.reactions-overlay.align-right[data-v-270f45f5] {
    left: auto;
    right: 8px;
    display: flex;
    justify-content: flex-end;
}
.reactions-track[data-v-270f45f5] {
    position: relative;
    max-width: 260px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    border: 1px solid var(--p-surface-200);
    background: var(--p-surface-0);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding-left: 4px;
    padding-right: 4px;
}
.reactions-overlay.align-left .reactions-track[data-v-270f45f5] {
    flex-direction: row;
}
.reactions-overlay.align-right .reactions-track[data-v-270f45f5] {
    flex-direction: row-reverse;
}
.reactions-track.borderless[data-v-270f45f5] {
    border: none;
    box-shadow: none;
    background: transparent;
}
.reaction-item[data-v-270f45f5] {
    position: relative;
    width: var(--reaction-size, 30px);
    height: var(--reaction-size, 30px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(var(--reaction-size, 30px) * -0.27);

    cursor: pointer;
    overflow: hidden;
}
.reaction-item[data-v-270f45f5]:first-child {
    margin-left: 0;
}
.reactions-overlay.align-right .reaction-item[data-v-270f45f5] {
    margin-left: 0;
    margin-right: calc(var(--reaction-size, 30px) * -0.27);
}
.reactions-overlay.align-right .reaction-item[data-v-270f45f5]:first-child {
    margin-right: 0;
}
.reaction-image[data-v-270f45f5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white);
    filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white);
}
.fallback-emoji[data-v-270f45f5] {
    font-size: calc(var(--reaction-size, 30px) * 0.53);
    line-height: 1;
}
.total-count[data-v-270f45f5] {
    font-size: calc(var(--reaction-size, 30px) * 0.4);
    color: var(--p-surface-500);
    margin-left: 4px;
    margin-right: 2px;
}
.reactions-overlay.align-right .total-count[data-v-270f45f5] {
    margin-left: 2px;
    margin-right: 4px;
}
.reactor-popover[data-v-270f45f5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 240px;
}
.popover-hint[data-v-270f45f5] {
    padding-top: 4px;
    font-size: 12px;
    color: var(--p-text-color-secondary);
}
.reactor-item[data-v-270f45f5] {
    display: flex;
    align-items: center;
    gap: 8px;
}
.reactor-name[data-v-270f45f5] {
    font-size: 0.875rem;
}
.message-link-pill[data-v-f925f8f6] {
  font-size: 0.6rem;
  border-radius: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: inline-flex;
  gap: 0.5rem;
  cursor: pointer !important;
}
.message-link-pill.link-disabled[data-v-f925f8f6] {
  background-color: var(--p-surface-200);
  color: var(--p-surface-500);
  cursor: not-allowed !important;
}
.message-link-pill.link-enabled[data-v-f925f8f6] {
  border-color: var(--p-primary-900);
  background-color: var(--p-primary-0);
  color: var(--p-primary-600);
}
.message-link-icon[data-v-f925f8f6] {
  font-size: 0.6rem;
  color: var(--p-surface-500);
}
@media (prefers-color-scheme: dark) {
.message-link-pill.link-enabled[data-v-f925f8f6] {
    color: var(--p-surface-950);
    background-color: var(--p-primary-600);
}
.message-link-icon[data-v-f925f8f6] {
    color: var(--p-surface-950);
}
}
.message-link-text[data-v-f925f8f6] {
  font-size: 1rem;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Large emoji styling */
.emoji-large[data-v-f925f8f6] {
  font-size: 4em;
  line-height: 1;
  text-align: center;
  margin: 0.25rem 0;
}@keyframes border-angle-rotate-bfd00da7 {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
.message-item[data-v-bfd00da7] {
  overflow-x: visible;
  max-width: 100%;
  margin-top: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.1rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.message-item.has-reactions[data-v-bfd00da7] {
  margin-bottom: 28px !important;
}
.message-item.no-sender[data-v-bfd00da7] {
  margin-top: 0.3rem;
  margin-bottom: 0rem;
}
.message-item.message-expanded[data-v-bfd00da7] {
  max-width: 100%;
}
.message-sent[data-v-bfd00da7] {
  align-self: flex-end;
  background-color: var(--p-primary-100);
  box-shadow: 2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 0 1rem;
}
.message-received[data-v-bfd00da7] {
  align-self: flex-start;
  background-color: var(--p-surface-0);
  box-shadow: -2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 1rem 0;
  margin-left: 1.5rem;
}
@media (prefers-color-scheme: dark) {
.message-sent[data-v-bfd00da7] {
    background-color: var(--p-primary-800);
    box-shadow: 2px 2px 7px 0 var(--p-surface-0);
}
.message-received[data-v-bfd00da7] {
    box-shadow: -2px 2px 7px 0 var(--p-surface-0);
    border: 1px solid var(--p-surface-200);
}
}
.message-content[data-v-bfd00da7] {
  padding: 0.4rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  position: relative;
}
.message-content.sent-message[data-v-bfd00da7] {
  color: var(--p-primary-950);
}
@media (prefers-color-scheme: dark) {
.message-content.sent-message[data-v-bfd00da7] {
    color: var(--p-primary-0);
}
}
.message-content.received-message[data-v-bfd00da7] {
  color: var(--p-surface-900);
}
.message-content.reply-style-content[data-v-bfd00da7] {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.message-text-container[data-v-bfd00da7] {
  position: relative;
  transition: max-height 0.3s ease;
}
.message-text-container.message-truncated[data-v-bfd00da7] {
  /* Fade effect for the bottom 50px only when content is truncated */
  mask-image: linear-gradient(to bottom, black calc(100% - 50px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 50px), transparent 100%);
}
.message-text-content[data-v-bfd00da7] {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}
.message-more-button[data-v-bfd00da7] {
  display: flex;
  align-items: center;
}
.more-button[data-v-bfd00da7] {
  background: none;
  border: none;
  color: var(--p-primary-500);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}
.more-button[data-v-bfd00da7]:hover {
  background-color: var(--p-primary-50);
  color: var(--p-primary-600);
}
.more-button[data-v-bfd00da7]:active {
  transform: scale(0.95);
}
.more-button-less[data-v-bfd00da7] {
  color: var(--p-surface-500);
}
.more-button-less[data-v-bfd00da7]:hover {
  background-color: var(--p-surface-100);
  color: var(--p-surface-700);
}
.message-content[data-v-bfd00da7] .highlighted-excerpt {
  cursor: help;
  color: var(--p-danger-600);
  font-weight: 500;
  background-color: var(--p-danger-100);
  border-radius: 25rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.message-time[data-v-bfd00da7] {
  font-size: 0.65rem;
  color: var(--p-surface-700);
  opacity: 0.5;
}
.message-sender[data-v-bfd00da7] {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

/* Status-specific styles */
.message-failed[data-v-bfd00da7] {
  opacity: 0.5;
  border: 1px dashed var(--p-danger-500);
}
.message-approving[data-v-bfd00da7] {
  --border-angle: 0deg;
  --inner-bg: var(--p-warning-50);
  --border-color: var(--p-warning-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-bfd00da7 var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  opacity: 0.8;
}
.message-approving[data-v-bfd00da7] .message-content {
  color: var(--p-surface-800);
}
@media (prefers-color-scheme: dark) {
.message-approving[data-v-bfd00da7] {
    --border-angle: 0deg;
    --inner-bg: var(--p-warning-100);
    --border-color: var(--p-warning-500);
    --animation-speed: 3s;
    animation: border-angle-rotate-bfd00da7 var(--animation-speed) infinite linear;
    border: 2.5px solid transparent;
    background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
}
.message-approving[data-v-bfd00da7] .message-content {
    color: var(--p-surface-300) !important;
}
}
.message-blocked[data-v-bfd00da7] {
  opacity: 0.4;
  border: 1px solid var(--p-surface-50);
  background-color: var(--p-surface-50);
}
@media (prefers-color-scheme: dark) {
.message-blocked[data-v-bfd00da7] {
    border: 1px solid var(--p-surface-300);
    background-color: var(--p-surface-200);
    opacity: 0.3;
}
}
.message-blocked[data-v-bfd00da7] .message-content {
  color: var(--p-surface-900) !important;
}
.message-moderating_UNUSED[data-v-bfd00da7] {
  opacity: 0.5;
  border: 1px solid var(--p-primary-500);
  background-color: var(--p-primary-50);
  animation: pulse-opacity-bfd00da7 2s ease-in-out infinite;
}
.message-moderating[data-v-bfd00da7] .badge-flag,
.message-moderating .badge-flag[data-v-bfd00da7] {
  animation: pulse-opacity-bfd00da7 2s ease-in-out infinite;
}
@keyframes pulse-opacity-bfd00da7 {
0%, 100% {
    opacity: 0.5;
}
50% {
    opacity: 0.75;
}
}
.message-sent.message-highlighted[data-v-bfd00da7] {
  /* yellow drop shadow */
  box-shadow: 5px 5px 5px 0 var(--p-surface-500) !important;
  /* grow slightly */
  /* move 5px to the left and 5px up */
  opacity: 1;
  transform: translate(-20px, 0px) scale(1.1) rotate(-2deg) !important;
  transition: all 0.2s ease !important;
  border-radius: 1rem 1rem 1rem 1rem !important;
  z-index: 1000;
  margin-bottom: 1rem;
}
.message-received.message-highlighted[data-v-bfd00da7] {
  /* yellow drop shadow */
  box-shadow: 5px 5px 5px 0 var(--p-surface-500) !important;
  /* grow slightly */
  /* move 5px to the left and 5px up */
  opacity: 1;
  transform: translate(20px, 0px) scale(1.1) rotate(2deg) !important;
  transition: all 0.2s ease !important;
  border-radius: 1rem 1rem 1rem 1rem !important;
  z-index: 1000 !important;
  margin-bottom: 1rem;
}
.message-item[data-v-bfd00da7] .reactions-overlay {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 1s ease 0.5s;
}
.message-highlighted[data-v-bfd00da7] .reactions-overlay {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

/* Drag timestamp styling */
.drag-timestamp[data-v-bfd00da7] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}
.reply-style-bubble[data-v-bfd00da7] {
  padding: 0rem !important;
  /* visually attach to the top of the bubble */
}
.reply-preview-inside-bubble[data-v-bfd00da7] {
  margin-bottom: 0.25rem;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  /* visually attach to the top of the bubble */
  box-shadow: none;
  background: var(--p-surface-50);
}/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.image-viewer[data-v-1bd98804] {
    display: contents;
}
.image-trigger[data-v-1bd98804] {
    cursor: zoom-in;
    display: contents;
}
.status-bar-spacer-pswp[data-v-1bd98804] {
    height: 55px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    pointer-events: none;
}
.share-icon[data-v-1bd98804] {
    background-color: transparent !important;
}

  /* Custom PhotoSwipe button styling */
.pswp.pswp-ios-statusbar-offset .pswp__top-bar {
    top: 55px !important;
}
.pswp__button--custom-download {
    background: transparent !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 8px !important;
    margin: 4px !important;
}

  /* target the icon in the custom download button */
.pswp__button--custom-download i {
    text-shadow:
      -1px -1px 0 rgba(0, 0, 0, 0.4),
      1px -1px 0 rgba(0, 0, 0, 0.4),
      -1px 1px 0 rgba(0, 0, 0, 0.4),
      1px 1px 0 rgba(0, 0, 0, 0.4);
}

  /* Custom navigation arrow styling */
.pswp__button--custom-arrow-prev,.pswp__button--custom-arrow-next {
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
}
.pswp__button--custom-arrow-prev:hover,.pswp__button--custom-arrow-next:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1) !important;
}

  /* Position the arrows */
.pswp__button--custom-arrow-prev {
    position: absolute !important;
    left: 30px !important;
    top: calc(50vh - 25px) !important;
    transform: scale(0.8) !important;
}
.pswp__button--custom-arrow-next {
    position: absolute !important;
    right: 30px !important;
    top: calc(50vh - 25px) !important;
    transform: scale(0.8) !important;
}

  /* Hide arrows on mobile/touch devices */
@media (max-width: 768px), (pointer: coarse) {
.pswp__button--custom-arrow-prev,.pswp__button--custom-arrow-next {
      display: none !important;
}
}

  /* Smooth transitions for arrows */
.pswp__button--custom-arrow-prev,.pswp__button--custom-arrow-next {
    transition: all 0.3s ease !important;
    opacity: 0.3 !important;
}
.pswp__button--custom-arrow-prev:hover,.pswp__button--custom-arrow-next:hover {
    opacity: 1 !important;
}

.binary-loading[data-v-c4c87c8f] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    /* bridge props -> css vars for use below */
    --digit-color: var(--fefc3d62);
    --base-opacity: var(--bf940634);
    --max-opacity: var(--v575718ca);
}
.binary-row[data-v-c4c87c8f] {
    position: absolute;
    left: -50%;
    white-space: nowrap;
    font-family:
      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
      'Courier New', monospace;
    font-size: clamp(12px, 1.35vmin, 14px);
    line-height: 2;
    letter-spacing: 0.25vmin;
    color: var(--p-surface-500);
    transform: translateX(0);
    animation-name: scroll-x-c4c87c8f;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}
.digit[data-v-c4c87c8f] {
    display: inline-block;
    opacity: var(--base-opacity);
    animation-name: flicker-c4c87c8f;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: opacity;
}
@keyframes scroll-x-c4c87c8f {
0% {
      transform: translateX(0);
}
100% {
      transform: translateX(100%);
}
}
@keyframes flicker-c4c87c8f {
0% {
      opacity: var(--base-opacity);
}
50% {
      opacity: var(--max-opacity);
}
100% {
      opacity: var(--base-opacity);
}
}
@media (prefers-reduced-motion: reduce) {
.binary-row[data-v-c4c87c8f],
    .digit[data-v-c4c87c8f] {
      animation: none !important;
}
}
@keyframes border-angle-rotate-9fa47f32 {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
/* Photo paper specific styles */
.photo-paper[data-v-9fa47f32] {
  width: 100%;
  height: 100%;
  background-color: var(--p-surface-0);
  overflow: hidden;
  z-index: 2;
}
@media (prefers-color-scheme: dark) {
.photo-paper[data-v-9fa47f32] {
    background-color: var(--p-surface-100);
}
}
.photo-paper.approving[data-v-9fa47f32] {
  --border-angle: 0deg;
  --inner-bg: var(--p-surface-0);
  --border-color: var(--p-primary-400);
  --animation-speed: 3s;
  animation: border-angle-rotate-9fa47f32 var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  opacity: 1;
}
.photo-paper.approving.child .photo-container[data-v-9fa47f32] {
  filter: grayscale(70%) blur(8px) brightness(1.4);
}
.photo-paper.moderating[data-v-9fa47f32] {
  --border-angle: 0deg;
  --inner-bg: var(--p-warning-50);
  --border-color: var(--p-warning-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-9fa47f32 var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  background-color: var(--p-warning-50);
  opacity: 1;
}
.photo-paper.failed[data-v-9fa47f32] {
  --border-angle: 0deg;
  --inner-bg: var(--p-danger-50);
  --border-color: var(--p-danger-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-9fa47f32 var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  background-color: var(--p-danger-50);
  opacity: 1;
}
.photo-paper.blocked[data-v-9fa47f32] {
  background-color: var(--p-surface-0);
  opacity: 1;
}
.photo-paper.blocked.child .photo-container[data-v-9fa47f32] {
  filter: grayscale(100%) blur(6px);
}
.photo-container[data-v-9fa47f32] {
  position: absolute;
  aspect-ratio: 1/1 !important;
  width: 92%;
  /* photo-paper positioning, center horizontally and vertically */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 2;
  /* Ensure touch events can be captured while allowing scrolling */
  touch-action: manipulation; /* Allow scrolling but enable touch manipulation */
  pointer-events: auto;
}

/* Inner wrapper for real image layers that we fade in/out */
.photo-container-inner[data-v-9fa47f32] {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
}

/* Skeleton wrapper that overlays the content and fades in/out */
.skeleton-container[data-v-9fa47f32] {
  transition: opacity 1s ease;
  z-index: 3;
  /* Center the loader within the container */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Visibility helpers */
.is-visible[data-v-9fa47f32] {
  opacity: 1;
  pointer-events: auto;
}
.is-hidden[data-v-9fa47f32] {
  opacity: 0;
  pointer-events: none;
}
.layer[data-v-9fa47f32] {
  position: absolute;
  inset: 0;
  aspect-ratio: 1/1 !important;
  object-fit: cover; /* handles any varying aspect ratios */
  backface-visibility: hidden;
  user-select: none;
  pointer-events: none; /* layers never intercept pointer */
  width: 100%;
  height: 100%;
  /* Ensure touch events pass through on all browsers */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.base.overlayed[data-v-9fa47f32] {
  filter: grayscale(70%) blur(3px) opacity(0.5);
}
.skeleton-shimmer[data-v-9fa47f32] {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.04) 25%, rgba(0, 0, 0, 0.12) 37%, rgba(0, 0, 0, 0.04) 63%);
  background-size: 400% 100%;
  animation: shimmer-9fa47f32 1.4s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes shimmer-9fa47f32 {
0% {
    background-position: 100% 0;
}
100% {
    background-position: -100% 0;
}
}
.mask[data-v-9fa47f32] {
  mask-image: var(--mask-img);
  mask-size: cover;
}
.foil[data-v-9fa47f32] {
  mix-blend-mode: color-dodge;
  opacity: calc(var(--foil-opacity) * 1);
  filter: saturate(var(--foil-saturation)) invert(1);
  mask: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) var(--foil-shine-start), rgb(255, 255, 255) var(--foil-shine-middle), rgba(255, 255, 255, 0) var(--foil-shine-end), rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) var(--foil-shine-start), rgb(255, 255, 255) var(--foil-shine-middle), rgba(255, 255, 255, 0) var(--foil-shine-end), rgba(255, 255, 255, 0) 100%);
}
.glow[data-v-9fa47f32] {
  background-image: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(0, 0, 0, 0.08) 65%, transparent 100%);
  transition: background-position 0.1s;
  mix-blend-mode: overlay;
}
.approving-overlay[data-v-9fa47f32] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-primary-300);
  z-index: 10;
  column-gap: 1rem;
  flex-direction: column;
  pointer-events: none;
}
.approving-icon[data-v-9fa47f32] {
  font-size: 5rem;
  color: var(--p-primary-300);
  padding-bottom: 1rem;
}
.approving-text[data-v-9fa47f32] {
  font-size: 1rem;
  color: var(--p-primary-400);
  text-shadow: 0 0 5px var(--p-surface-0);
  padding-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.blocked-overlay[data-v-9fa47f32] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-danger-500);
  z-index: 10;
  column-gap: 1rem;
  flex-direction: column;
}
.blocked-icon[data-v-9fa47f32] {
  font-size: 5rem;
  color: var(--p-danger-400);
  padding-bottom: 1rem;
}
.blocked-text[data-v-9fa47f32] {
  font-size: 1rem;
  color: var(--p-danger-500);
  text-shadow: 0 0 5px var(--p-surface-0);
  padding-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.quarantined-overlay[data-v-9fa47f32] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-danger-500);
  z-index: 10;
  column-gap: 1rem;
  flex-direction: column;
}
.quarantined-icon[data-v-9fa47f32] {
  font-size: 5rem;
  color: var(--p-danger-400);
  padding-bottom: 1rem;
}
.quarantined-text[data-v-9fa47f32] {
  font-size: 1rem;
  color: var(--p-danger-500);
  text-shadow: 0 0 5px var(--p-surface-0);
  padding-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.reactions-overlay[data-v-9fa47f32] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--p-surface-0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  z-index: 10;
  opacity: 0.9;
}
.fullscreen-overlay-wrapper[data-v-9fa47f32] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn-9fa47f32 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.status-bar-spacer[data-v-9fa47f32] {
  height: 55px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  flex-shrink: 0;
}

/* Fullscreen overlay styles */
.fullscreen-overlay[data-v-9fa47f32] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  animation: fadeIn-9fa47f32 0.3s ease-out;
}
.fullscreen-overlay[data-v-9fa47f32] .spatial-card-container {
  cursor: default;
  margin: 0;
  animation: scaleIn-9fa47f32 0.3s ease-out;
  pointer-events: auto; /* Ensure card receives events */
  width: 90vmin;
  height: 90vmin;
}
.fullscreen-overlay[data-v-9fa47f32] .spatial-card {
  margin: 0;
}
.fullscreen-overlay[data-v-9fa47f32] .spatial-card-container:hover {
  transform: none;
}

/* Enhanced fullscreen shadows */
.fullscreen-overlay[data-v-9fa47f32] .spatial-card::before {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
  width: 55%;
  height: 55%;
  transform: skewY(-8.5deg);
  transform-origin: right;
  bottom: -10px;
  left: -20px;
  border-radius: 20px;
  filter: blur(15px);
  opacity: 0.9;
  z-index: -1;
  transition: opacity 0.5s ease-out;
}
.fullscreen-overlay[data-v-9fa47f32] .spatial-card::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
  width: 55%;
  height: 55%;
  transform: skewY(8.5deg);
  transform-origin: left;
  bottom: -10px;
  right: -20px;
  border-radius: 20px;
  filter: blur(15px);
  opacity: 0.9;
  z-index: -1;
  transition: opacity 0.5s ease-out;
}
@keyframes fadeIn-9fa47f32 {
from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}
to {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
}
@keyframes scaleIn-9fa47f32 {
from {
    transform: scale(0.8);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
/* Full screen actions */
.fullscreen-top-actions[data-v-9fa47f32] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fullscreen-top-actions-ios-offset[data-v-9fa47f32] {
  top: calc(1rem + 55px);
}

/* Prevent interaction with original card when in fullscreen */
.spatial-card-container[data-v-9fa47f32]:has(+ * .fullscreen-overlay) {
  pointer-events: none;
}@keyframes border-angle-rotate-06e1952b {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
.awaiting-approval-text-container[data-v-06e1952b] {
  margin-left: 0.75rem;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0rem;
  position: relative;
  transition: max-height 0.3s ease;
  border-radius: 12px 12px 12px 0px;
  box-shadow: 2px 2px 7px 0 var(--p-surface-300);
}
.message-blocked[data-v-06e1952b] {
  opacity: 0.4;
  border: 1px solid var(--p-surface-50, #f44336);
  background-color: var(--p-surface-50, #ffebee);
  width: 92%;
}
.awaiting-approval-text-content[data-v-06e1952b] {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}
.message-item[data-v-06e1952b] {
  overflow-x: visible;
  min-height: 320px;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  overflow: visible;
}
.message-item.no-sender[data-v-06e1952b] {
  margin-top: 0.2rem;
}
.message-photo-paper[data-v-06e1952b] {
  /* No speech bubble styling for photo papers */
  margin-left: 0.5rem;
  background: transparent;
  padding: 0;
  width: 100%;
  overflow: visible;
}
.message-sent[data-v-06e1952b] {
  align-self: flex-end;
  padding-top: 0.5rem;
}
.message-received[data-v-06e1952b] {
  align-self: flex-start;
  padding-left: 0.9rem;
  padding-top: 0.5rem;
}
.message-sender[data-v-06e1952b] {
  font-weight: bold;
  padding: 0 0.5rem;
  color: var(--p-surface-900);
  background-color: var(--p-surface-50);
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
  width: fit-content;
  opacity: 0.9;
}
.photo-paper-container[data-v-06e1952b] {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: visible;
}
.photo-paper-longpress-overlay[data-v-06e1952b] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}
.photo-paper-card-wrapper[data-v-06e1952b] {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  overflow: visible;
}
.photo-paper-skeleton-container[data-v-06e1952b] {
  width: 100%;
  display: flex;
  justify-content: center;
  height: fit-content;
}
.photo-paper-skeleton[data-v-06e1952b] {
  border-radius: 12px;
  border: 2px solid var(--p-surface-border);
}
.photo-paper-wrapper[data-v-06e1952b] {
  position: relative;
  width: 100%;
  display: inline-block;
  overflow: visible;
}
.message-photo-paper-card[data-v-06e1952b] {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  overflow: hidden;
}
.message-photo-paper-card[data-v-06e1952b]:hover {
  transform: scale(1.02);
}
.loading-overlay[data-v-06e1952b] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.loading-content[data-v-06e1952b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
}
.loading-text[data-v-06e1952b] {
  font-size: 0.875rem;
  font-weight: 500;
}
.photo-paper-error[data-v-06e1952b],
.photo-paper-placeholder[data-v-06e1952b] {
  width: 80%;
  height: 200px;
  border: 2px dashed var(--p-surface-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--p-text-color-secondary);
  background: var(--p-surface-50);
}
.photo-paper-error i[data-v-06e1952b],
.photo-paper-placeholder i[data-v-06e1952b] {
  font-size: 2rem;
  opacity: 0.5;
}
.message-time[data-v-06e1952b] {
  font-size: 0.75rem;
  color: var(--p-text-color-secondary);
}

/* Status-specific styles */
.message-failed[data-v-06e1952b] {
  opacity: 1;
}
.message-failed .photo-paper-container[data-v-06e1952b] {
  filter: grayscale(100%);
}
.message-approving[data-v-06e1952b] {
  opacity: 0.8;
}
.message-approving.has-placeholder-content[data-v-06e1952b] {
  --border-angle: 0deg;
  --inner-bg: var(--p-warning-50);
  --border-color: var(--p-warning-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-06e1952b var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  padding-right: 0.5rem !important;
}
.message-unsent[data-v-06e1952b] {
  opacity: 0.6;
}
.message-moderating[data-v-06e1952b] {
  opacity: 0.5;
  animation: pulse-opacity-06e1952b 2s ease-in-out infinite;
}
.message-moderating .photo-paper-container[data-v-06e1952b] {
  filter: blur(1px);
}
@keyframes pulse-opacity-06e1952b {
0%, 100% {
    opacity: 0.5;
}
50% {
    opacity: 0.75;
}
}
.message-sent.message-highlighted[data-v-06e1952b] {
  /* grow slightly */
  /* move 5px to the left and 5px up */
  opacity: 1;
  transform: translate(-20px, -20px) scale(1.2) rotate(-2deg) !important;
  transition: all 0.2s ease !important;
  z-index: 1000;
}
.message-received.message-highlighted[data-v-06e1952b] {
  /* grow slightly */
  /* move 5px to the left and 5px up */
  opacity: 1;
  transform: translate(20px, 20px) scale(1.1) rotate(2deg) !important;
  transition: all 0.2s ease !important;
  z-index: 1000;
}

/* Drag timestamp styling */
.drag-timestamp[data-v-06e1952b] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}
.sticker[data-v-50bc8f7d] {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.sticker[data-v-50bc8f7d] * {
    backface-visibility: hidden;
    pointer-events: none;
}
.sticker-container[data-v-50bc8f7d] {
    position: absolute;
    transform-style: preserve-3d;
}
.sticker-wrapper[data-v-50bc8f7d] {
    position: absolute;
    top: 0;
    left: 0;
}
.sticker-clip[data-v-50bc8f7d] {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
.sticker-front[data-v-50bc8f7d],
  .sticker-back[data-v-50bc8f7d] {
    position: absolute;
    overflow: hidden;
    pointer-events: all;
    /* keep on GPU and reduce tiny resampling differences */
    transform: translateZ(0);
    will-change: transform;

    /* OPTIONAL TWEAK: nudge the rasterizer toward crisper alignment */
    image-rendering: -webkit-optimize-contrast; /* Safari/WebKit */
    image-rendering: crisp-edges; /* Chromium/Firefox (may fall back) */
}
.sticker-front[data-v-50bc8f7d] {
    z-index: 0;
}
.sticker-back[data-v-50bc8f7d] {
    z-index: 2;
}
.message-item[data-v-9cf31277] {
  overflow-x: visible;
  height: fit-content;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  border: none !important;
}
.message-item.no-sender[data-v-9cf31277] {
  margin-top: 0.2rem;
}
.message-sticker[data-v-9cf31277] {
  margin-left: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  max-width: 240px;
}
.message-sent[data-v-9cf31277] {
  align-self: flex-end;
}
.message-received[data-v-9cf31277] {
  align-self: flex-start;
}
.message-sender[data-v-9cf31277] {
  font-weight: bold;
  padding: 0 0.5rem;
  color: var(--p-surface-900);
  background-color: var(--p-surface-50);
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
  width: fit-content;
  opacity: 0.9;
}
.sticker-container[data-v-9cf31277] {
  position: relative;
  width: 100%;
}
.long-press-overlay[data-v-9cf31277] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: pointer;
}
.sticker-skeleton-container[data-v-9cf31277] {
  width: 100%;
  display: flex;
  justify-content: center;
  height: fit-content;
}
.sticker-skeleton[data-v-9cf31277] {
  border-radius: 12px;
  border: 2px solid var(--p-surface-border);
}
.sticker-wrapper[data-v-9cf31277] {
  position: relative;
  width: 100%;
  display: inline-block;
  margin-bottom: -4rem;
}
.message-sticker-content[data-v-9cf31277] {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.2s ease;
  background: transparent;
  pointer-events: none;
}
.sticker-error[data-v-9cf31277],
.sticker-placeholder[data-v-9cf31277] {
  width: 80%;
  height: 200px;
  border: 2px dashed var(--p-surface-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--p-text-color-secondary);
  background: var(--p-surface-50);
}
.drag-timestamp[data-v-9cf31277] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}
.join-leave-message-container[data-v-04bf1ad0] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
}
.join-leave-pill[data-v-04bf1ad0] {
    background-color: var(--p-surface-0);
    opacity: 0.5;
    color: var(--p-surface-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    text-align: center;
}
.message-item[data-v-fb9f0a90] {
  overflow-x: visible;
  max-width: 100%;
  margin-top: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.1rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.message-item.no-sender[data-v-fb9f0a90] {
  margin-top: 0.3rem;
  margin-bottom: 0rem;
}
.message-sent[data-v-fb9f0a90] {
  align-self: flex-end;
  background-color: var(--p-primary-100, #bbdefb);
  box-shadow: 2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 0 1rem;
}
.message-received[data-v-fb9f0a90] {
  align-self: flex-start;
  background-color: var(--p-surface-0, #ffffff);
  box-shadow: -2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 1rem 0;
}
.message-archived-contact[data-v-fb9f0a90] {
  background-color: var(--p-surface-200, #e9ecef) !important;
  border: 1px solid var(--p-surface-300, #dee2e6);
  opacity: 0.8;
}
.message-content[data-v-fb9f0a90] {
  padding: 0.4rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.archived-contact-content[data-v-fb9f0a90] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--p-surface-200, #e9ecef);
}
.archived-contact-icon[data-v-fb9f0a90] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--p-surface-300, #dee2e6);
  border-radius: 50%;
  color: var(--p-surface-600, #6c757d);
  font-size: 0.875rem;
}
.archived-contact-text[data-v-fb9f0a90] {
  flex: 1;
}
.archived-contact-title[data-v-fb9f0a90] {
  font-weight: 600;
  color: var(--p-surface-700, #495057);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.archived-contact-description[data-v-fb9f0a90] {
  color: var(--p-surface-600, #6c757d);
  font-size: 0.75rem;
  line-height: 1.2;
}
.message-sender[data-v-fb9f0a90] {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--p-surface-700, #495057);
}

/* Drag timestamp styling */
.drag-timestamp[data-v-fb9f0a90] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}@keyframes border-angle-rotate-2d14a58b {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
.message-item[data-v-2d14a58b] {
  overflow-x: visible;
  max-width: 100%;
  margin-top: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.1rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.message-item.no-sender[data-v-2d14a58b] {
  margin-top: 0.3rem;
  margin-bottom: 0rem;
}
.message-sent[data-v-2d14a58b] {
  align-self: flex-end;
  background-color: var(--p-primary-100, #bbdefb);
  box-shadow: 2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 0 1rem;
}
.message-received[data-v-2d14a58b] {
  align-self: flex-start;
  background-color: var(--p-surface-0, #ffffff);
  box-shadow: -2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 1rem 0;
}
.message-unknown-contact[data-v-2d14a58b] {
  background-color: var(--p-surface-200, #e9ecef) !important;
  border: 1px solid var(--p-surface-300, #dee2e6);
  opacity: 0.8;
}
.message-content[data-v-2d14a58b] {
  padding: 0.4rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.unknown-contact-content[data-v-2d14a58b] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--p-surface-200, #e9ecef);
}
.unknown-contact-icon[data-v-2d14a58b] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--p-surface-300, #dee2e6);
  border-radius: 50%;
  color: var(--p-surface-600, #6c757d);
  font-size: 0.875rem;
}
.unknown-contact-text[data-v-2d14a58b] {
  flex: 1;
}
.unknown-contact-title[data-v-2d14a58b] {
  font-weight: 600;
  color: var(--p-surface-700, #495057);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.unknown-contact-description[data-v-2d14a58b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--p-surface-600, #6c757d);
  font-size: 0.75rem;
  line-height: 1.2;
}
.unknown-contact-username[data-v-2d14a58b] {
  color: var(--p-surface-700, #495057);
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}
.message-sender[data-v-2d14a58b] {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--p-surface-700, #495057);
}

/* Drag timestamp styling */
.drag-timestamp[data-v-2d14a58b] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}
.contact-pending[data-v-2d14a58b] {
  --border-angle: 0deg;
  --inner-bg: var(--p-surface-200);
  --border-color: var(--p-primary-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-2d14a58b var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
  opacity: 1;
}.message-item[data-v-fdc96c9c] {
  overflow-x: visible;
  max-width: 100%;
  margin-top: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.1rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.message-item.no-sender[data-v-fdc96c9c] {
  margin-top: 0.3rem;
  margin-bottom: 0rem;
}
.message-sent[data-v-fdc96c9c] {
  align-self: flex-end;
  background-color: var(--p-primary-100, #bbdefb);
  box-shadow: 2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 0 1rem;
}
.message-received[data-v-fdc96c9c] {
  align-self: flex-start;
  background-color: var(--p-surface-0, #ffffff);
  box-shadow: -2px 2px 7px 0 var(--p-surface-300);
  border-radius: 1rem 1rem 1rem 0;
}
.message-contact-awaiting-approval[data-v-fdc96c9c] {
  background-color: var(--p-surface-200, #e9ecef) !important;
  border: 1px solid var(--p-surface-300, #dee2e6);
  opacity: 0.6;
}
.message-content[data-v-fdc96c9c] {
  padding: 0.4rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.contact-awaiting-approval-content[data-v-fdc96c9c] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--p-surface-200, #e9ecef);
}
.contact-awaiting-approval-icon[data-v-fdc96c9c] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--p-surface-300, #dee2e6);
  border-radius: 50%;
  color: var(--p-surface-600, #6c757d);
  font-size: 0.875rem;
}
.contact-awaiting-approval-text[data-v-fdc96c9c] {
  flex: 1;
}
.contact-awaiting-approval-title[data-v-fdc96c9c] {
  font-weight: 600;
  color: var(--p-surface-700, #495057);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.contact-awaiting-approval-description[data-v-fdc96c9c] {
  color: var(--p-surface-600, #6c757d);
  font-size: 0.75rem;
  line-height: 1.2;
}
.message-sender[data-v-fdc96c9c] {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--p-surface-700, #495057);
}

/* Drag timestamp styling */
.drag-timestamp[data-v-fdc96c9c] {
  font-size: 0.75rem;
  color: var(--p-surface-0);
  font-weight: 500;
}
.unencryptable-message-container[data-v-81d2b73b] {
    display: flex;
    justify-content: center; /* default; overridden by alignment classes */
    align-items: center;
    padding: 8px;
    width: 100%;
}
.align-left[data-v-81d2b73b] {
    justify-content: flex-start;
}
.align-right[data-v-81d2b73b] {
    justify-content: flex-end;
}
.unencryptable-message-pill[data-v-81d2b73b] {
    width: 80%;
    max-width: 400px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--p-surface-0, #ffebee);
    border: 1px solid var(--p-surface-300, #f8d7da);
    color: var(--p-surface-700);
    padding: 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    opacity: 0.8;
}
.padlock-icon[data-v-81d2b73b] {
    color: var(--p-text-color-secondary, #6c757d);
    font-size: 0.95rem;
}
.unencryptable-text[data-v-81d2b73b] {
    line-height: 1.2;
}
.unencryptable-text-block[data-v-81d2b73b] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.unencryptable-reason-text[data-v-81d2b73b] {
    color: var(--p-red-500, #dc2626);
    font-size: 0.75rem;
    line-height: 1.1;
}

.user-message-wrapper[data-v-7e8fbd29] {
    width: 100%;
    overflow: visible;
}

.message-link-icon[data-v-ff963c4f] {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--p-primary-500);
    text-decoration: none !important;
}
.user-report-card[data-v-ff963c4f] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.title[data-v-ff963c4f] {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}
.header[data-v-ff963c4f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title[data-v-ff963c4f] {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.notification-message[data-v-ff963c4f] {
    max-width: 100% !important;
    width: 100%;
}
.chat-link[data-v-ff963c4f] {
    border: none;
    background: transparent;
    color: inherit;
    padding: 0;
    margin-left: 0.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.chat-link[data-v-ff963c4f]:hover {
    text-decoration-thickness: 2px;
}

.link[data-v-3502980f] {
    color: var(--p-primary-100);
    text-decoration: underline;
}

.section-title[data-v-f0b6d8ab] {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.reported-user-card[data-v-f0b6d8ab] {
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.75rem;
}
.reported-message-wrapper[data-v-f0b6d8ab] {
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.75rem;
}
.reported-message-inner[data-v-f0b6d8ab] {
    margin-top: 0.25rem;
}
.pending-state[data-v-f0b6d8ab] {
    border-radius: 0.5rem;
    padding: 0.75rem;
    background-color: var(--p-yellow-100);
    color: var(--p-yellow-900);
}
.guidance-text[data-v-f0b6d8ab] {
    color: var(--p-primary-0);
}
.dialog-footer[data-v-f0b6d8ab] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
}

.section-title[data-v-9030944f] {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.reported-message-wrapper[data-v-9030944f] {
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.75rem;
}
.reported-message-inner[data-v-9030944f] {
    margin-top: 0.25rem;
}
.guidance-text[data-v-9030944f] {
    color: var(--p-primary-0);
}
.link[data-v-9030944f] {
    color: var(--p-primary-100);
    text-decoration: underline;
}

.feeling-safe-content[data-v-a95cf22b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}
.instruction-list[data-v-a95cf22b] {
    text-align: left;
    padding-left: 1.5rem;
    list-style-type: disc;
}
.instruction-list li[data-v-a95cf22b] {
    margin-bottom: 0.5rem;
    color: var(--p-surface-700);
}
[data-v-a95cf22b] .feeling-safe-dialog-root {
    max-width: 400px;
    width: 90%;
    border-radius: 1rem;
}

.checksum-display[data-v-555bec58] {
    background-color: var(--p-surface-50);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--p-surface-200);
}
.checksum-value[data-v-555bec58] {
    font-size: 3rem;
    font-weight: 800;
    color: var(--p-primary-600);
    letter-spacing: 8px;
    font-family: monospace;
}
.checksum-label[data-v-555bec58] {
    font-size: 1rem;
    color: var(--p-surface-600);
    font-weight: 500;
}
.info-card[data-v-555bec58] {
    background: var(--p-primary-50);
    border: 1px solid var(--p-primary-200);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
}
.info-content[data-v-555bec58] {
    display: flex;
    align-items: flex-start;
}
.info-icon[data-v-555bec58] {
    color: var(--p-primary-500);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.info-text[data-v-555bec58] {
    color: var(--p-primary-700);
    font-size: 0.95rem;
    line-height: 1.5;
}
.qr-container[data-v-555bec58] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.debug-event-wrapper[data-v-d7b84809] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.debug-event-grid[data-v-d7b84809] {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
}
.debug-event-json[data-v-d7b84809] {
    margin: 0;
    max-height: 60vh;
    overflow: auto;
    border: 1px solid var(--p-surface-300);
    border-radius: 0.5rem;
    background: var(--p-surface-50);
    padding: 0.75rem;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.8rem;
}

.qrcode-container[data-v-e6f0cfff] {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}
.qr-scanner[data-v-e6f0cfff] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.crop-marks-overlay[data-v-e6f0cfff] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}
.crop-mark[data-v-e6f0cfff] {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 2px;
}
.crop-mark-top-left[data-v-e6f0cfff] {
    top: 10%;
    left: 10%;
    border-right: none;
    border-bottom: none;
}
.crop-mark-top-right[data-v-e6f0cfff] {
    top: 10%;
    right: 10%;
    border-left: none;
    border-bottom: none;
}
.crop-mark-bottom-left[data-v-e6f0cfff] {
    bottom: 10%;
    left: 10%;
    border-right: none;
    border-top: none;
}
.crop-mark-bottom-right[data-v-e6f0cfff] {
    bottom: 10%;
    right: 10%;
    border-left: none;
    border-top: none;
}
.scanner-overlay[data-v-e6f0cfff] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}
.scan-feedback[data-v-e6f0cfff] {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.processing-container[data-v-e6f0cfff] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}
.scan-error[data-v-e6f0cfff] {
    background-color: var(--p-error-50);
    color: var(--p-error-700);
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid var(--p-error-500);
    display: flex;
    align-items: center;
}
.camera-unavailable[data-v-e6f0cfff] {
    background-color: var(--p-surface-100);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--p-surface-500);
}
.checksum-container[data-v-e6f0cfff] {
    padding: 1rem;
    background-color: var(--p-surface-50);
    border-radius: 8px;
    border: 1px solid var(--p-surface-200);
}
.checksum-label[data-v-e6f0cfff] {
    font-size: 1.1rem;
    color: var(--p-surface-600);
    font-weight: 500;
}
.checksum-value[data-v-e6f0cfff] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--p-primary-600);
    letter-spacing: 2px;
}
@media (prefers-color-scheme: dark) {
.camera-unavailable[data-v-e6f0cfff] {
      background-color: var(--p-surface-800);
      border-color: var(--p-surface-600);
}
}

  /* === ADD USER POPOVER === */
.add-user-popover[data-v-5ade3577] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.25rem;
    min-width: 200px;
}

.checksum-display[data-v-17679998] {
    background-color: var(--p-surface-50);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--p-surface-200);
}
.checksum-value[data-v-17679998] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--p-primary-600);
    letter-spacing: 4px;
    font-family: monospace;
}
.checksum-label[data-v-17679998] {
    font-size: 1rem;
    color: var(--p-surface-600);
    font-weight: 500;
}
.info-card[data-v-17679998] {
    background: var(--p-primary-50);
    border: 1px solid var(--p-primary-200);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}
.info-card-warning[data-v-17679998] {
    background: var(--p-danger-50);
    border: 1px solid var(--p-danger-200);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}
.warning-card[data-v-17679998] {
    background: var(--p-red-50);
    border: 2px solid var(--p-red-300);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
}
.info-content[data-v-17679998],
  .warning-content[data-v-17679998] {
    display: flex;
    align-items: flex-start;
}
.info-icon[data-v-17679998] {
    color: var(--p-primary-500);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.warning-icon[data-v-17679998] {
    color: var(--p-red-600);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.info-text[data-v-17679998],
  .warning-text[data-v-17679998] {
    color: var(--p-primary-700);
    font-size: 0.95rem;
    line-height: 1.5;
}
.info-text-warning[data-v-17679998] {
    color: var(--p-danger-700);
    font-size: 0.95rem;
    line-height: 1.5;
}
.warning-text[data-v-17679998] {
    color: var(--p-red-800);
}
.warning-title[data-v-17679998] {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.warning-list[data-v-17679998] {
    margin: 0.5rem 0 0 1rem;
    padding-left: 0.5rem;
    list-style-type: disc;
}
.warning-list li[data-v-17679998] {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.form-field[data-v-17679998] {
    margin-bottom: 1rem;
    width: 100%;
}
.form-label[data-v-17679998] {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--p-surface-700);
}
.form-error[data-v-17679998] {
    color: var(--p-red-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

  /* PWA guard: child signup explanation list (hanging indent so wrap aligns with first line) */
.pwa-guard-child-reasons[data-v-3f3b6ea6] {
    font-size: 0.875rem;
    color: var(--p-surface-600);
    margin-top: 1rem;
    text-align: left;
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.25em;
    margin-left: 0;
}
.pwa-guard-child-reasons li[data-v-3f3b6ea6] {
    margin-bottom: 0.5em;
}
.button-group[data-v-3f3b6ea6] {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
.login-card .button-group[data-v-3f3b6ea6] .p-button {
    width: 100%;
    max-width: 250px;
}
.passkey-quick-try[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.passkey-quick-try-icon[data-v-3f3b6ea6] {
    font-size: 3rem;
    color: var(--p-primary-600);
}
.button-parent[data-v-3f3b6ea6] {
    background: var(--p-primary-700) !important;
    border: 1px solid var(--p-primary-800) !important;
}
.login-otp-input-field[data-v-3f3b6ea6] {
    width: 40px;
    font-size: 36px;
    text-transform: uppercase;
    border: 0 none;
    appearance: none;
    text-align: center;
    transition: all 0.2s;
    background: transparent;
    border-bottom: 2px solid var(--p-inputtext-border-color);
}
.login-otp-input-field[data-v-3f3b6ea6]:focus {
    outline: 0 none;
    border-bottom-color: var(--p-primary-color);
}

  /* === LAYOUT === */
.login-container[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: var(--p-brand-500);
    position: relative;
}
.login-card[data-v-3f3b6ea6] {
    max-width: 450px;
    width: 95%;
    border-radius: 1rem;
    background-color: var(--p-surface-0);
    color: var(--p-surface-900);
    box-shadow: 0 8px 30px var(--p-surface-400);
    position: relative;
    z-index: 2;
    margin-bottom: 20vh;
    overflow-y: auto !important;
    max-height: calc(
      100vh - 4rem
    ); /* Constrain to parent, leaving room for logo and buttons */
}
.login-section[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.child-chooser-container[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 4rem);
    z-index: 2;
}
.child-chooser-spacer[data-v-3f3b6ea6] {
    height: 11rem;
}
.child-chooser-section[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    padding-top: 3rem;
    padding-bottom: 2rem;

    z-index: 2;
    box-sizing: border-box;
}
.child-chooser-content[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 0;
}
.scrollable-profile-list[data-v-3f3b6ea6] {
    width: 100%;
    max-height: calc(
      100vh - 25rem
    ); /* Constrain to parent, leaving room for logo and buttons */
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    min-height: 0;
    /* add a gradient mask at the bottom, for the last 10% of height only*/
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 90%,
      var(--p-brand-500) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%
    );
}
.fixed-buttons-container[data-v-3f3b6ea6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem 0;
    flex-shrink: 0;
}

  /* === HEADER === */
.card-header-container[data-v-3f3b6ea6] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.card-header[data-v-3f3b6ea6] {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    min-height: 3rem;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid var(--p-surface-200);
}
.card-header-welcome[data-v-3f3b6ea6] {
    justify-content: center;
    padding: 1rem 0rem 0rem 0rem;
    border-bottom: none;
}
.back-button[data-v-3f3b6ea6] {
    position: absolute !important;
    left: 0.5rem;
    top: 0.7rem;
    z-index: 1000;
}
.header-title[data-v-3f3b6ea6] {
    text-align: center;
    margin: 0;
    margin-right: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--p-surface-700);
}
.header-white[data-v-3f3b6ea6] {
    color: var(--p-surface-0);
}

  /* === BACKGROUND LOGO === */
.background-logo[data-v-3f3b6ea6] {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}
.background-logo .logo[data-v-3f3b6ea6] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.background-logo .text-logo[data-v-3f3b6ea6] {
    width: 100px;
    height: auto;
}

  /* === CONTENT === */
.welcome-section[data-v-3f3b6ea6] {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}
.welcome-subtitle[data-v-3f3b6ea6] {
    font-size: 1.1rem;
    color: var(--p-surface-500);
    font-weight: 500;
    margin: 0;
}

  /* === FORMS === */
.login-form-container[data-v-3f3b6ea6] {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.autofill-decoy-fields[data-v-3f3b6ea6] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
.input-group[data-v-3f3b6ea6] {
    margin-bottom: 1rem;
    width: 100%;
}
.field-label[data-v-3f3b6ea6] {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.field-error[data-v-3f3b6ea6] {
    color: var(--p-red-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}
.form-instructions[data-v-3f3b6ea6] {
    color: var(--p-primary-700);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}
.instruction-list[data-v-3f3b6ea6] {
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    list-style-type: disc;
}
.instruction-list li[data-v-3f3b6ea6] {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.instruction-list li[data-v-3f3b6ea6]::marker {
    color: var(--p-primary-500);
}
.status-message[data-v-3f3b6ea6] {
    color: var(--p-primary-600);
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

  /* === INFO CARD === */
.info-card[data-v-3f3b6ea6] {
    background: var(--p-primary-50);
    border: 1px solid var(--p-primary-200);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
}
.info-content[data-v-3f3b6ea6] {
    display: flex;
    align-items: flex-start;
}
.info-icon[data-v-3f3b6ea6] {
    color: var(--p-primary-500);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.info-text-container[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.info-text-label[data-v-3f3b6ea6] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--p-primary-700);
}
.info-text[data-v-3f3b6ea6] {
    color: var(--p-primary-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

  /* === ANIMATIONS === */
.animate-fade-in[data-v-3f3b6ea6] {
    animation: fadeIn-3f3b6ea6 0.3s ease-out;
}
@keyframes fadeIn-3f3b6ea6 {
from {
      opacity: 0;
      transform: translateY(10px);
}
to {
      opacity: 1;
      transform: translateY(0);
}
}

  /* === PRIMEVUE OVERRIDES === */
[data-v-3f3b6ea6] .p-inputotp {
    justify-content: center;
    gap: 0.5rem;
}
[data-v-3f3b6ea6] .p-inputotp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}
[data-v-3f3b6ea6] .p-password {
    width: 100%;
}

  /* === PARENT DEVICE POPOVER === */
.parent-device-popover[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
}

  /* === PROFILE LIST TRANSITIONS === */
.profile-list-move[data-v-3f3b6ea6],
  .profile-list-enter-active[data-v-3f3b6ea6],
  .profile-list-leave-active[data-v-3f3b6ea6] {
    transition: all 0.4s ease;
}
.profile-list-enter-from[data-v-3f3b6ea6] {
    opacity: 0;
    transform: translateX(100%);
}
.profile-list-enter-to[data-v-3f3b6ea6] {
    opacity: 1;
    transform: translateX(0);
}
.profile-list-leave-from[data-v-3f3b6ea6] {
    opacity: 1;
    transform: translateX(0);
}
.profile-list-leave-to[data-v-3f3b6ea6] {
    opacity: 0;
    transform: translateX(100%);
}
.profile-item[data-v-3f3b6ea6] {
    will-change: transform, opacity;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
}
.user-type-icon[data-v-3f3b6ea6] {
    font-size: 1.25rem;
    color: var(--p-surface-600);
}
.child-chooser-button[data-v-3f3b6ea6] {
    max-width: 300px;
    min-width: 200px;
}
.child-chooser-button-spacer[data-v-3f3b6ea6] {
    min-height: 10%;
    height: 1rem;
}

  /* === TRASH ICON TRANSITION === */
.trash-icon-enter-active[data-v-3f3b6ea6],
  .trash-icon-leave-active[data-v-3f3b6ea6] {
    transition: all 0.3s ease;
}
.trash-icon-enter-from[data-v-3f3b6ea6] {
    opacity: 0;
    transform: translateX(100%);
}
.trash-icon-enter-to[data-v-3f3b6ea6] {
    opacity: 1;
    transform: translateX(0);
}
.trash-icon-leave-from[data-v-3f3b6ea6] {
    opacity: 1;
    transform: translateX(0);
}
.trash-icon-leave-to[data-v-3f3b6ea6] {
    opacity: 0;
    transform: translateX(100%);
}

  /* === LOADING STATE === */
.loading-state[data-v-3f3b6ea6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 200px;
}
.loading-message[data-v-3f3b6ea6] {
    font-size: 1.1rem;
    color: var(--p-surface-0);
    text-align: center;
    padding-bottom: 1rem;
}
.loading-message strong[data-v-3f3b6ea6] {
    font-weight: 600;
    color: var(--p-surface-0);
}

.main-nav-bar[data-v-ec38a75b] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.horizontal[data-v-ec38a75b] {
    width: 100%;
    height: 80px;
}
.vertical[data-v-ec38a75b] {
    height: 100%;
    width: 80px;
}
.nav-underlay[data-v-ec38a75b] {
    position: absolute;
    inset: 0;
    background-color: var(--p-primary-500);
    z-index: 0;
}
.nav-surface-panel[data-v-ec38a75b] {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.nav-surface-cover[data-v-ec38a75b] {
    position: absolute;
    inset: 0;
    background-color: var(--p-surface-100, var(--p-surface-card));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform-origin: left top;
}
.main-nav-items[data-v-ec38a75b] {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    pointer-events: auto;
}
.main-nav-items--expanded[data-v-ec38a75b] {
    pointer-events: none;
}
.main-nav-items--interaction-locked[data-v-ec38a75b] {
    pointer-events: none;
}
.main-nav-items--expanded .nav-item--expanded-parent[data-v-ec38a75b] {
    pointer-events: auto;
}
.subnav-collapse-hitbox[data-v-ec38a75b] {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 6;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.vertical .subnav-collapse-hitbox[data-v-ec38a75b] {
    width: 100%;
    height: 90px;
}
.horizontal .main-nav-items[data-v-ec38a75b] {
    flex-direction: row;
    justify-content: space-around;
    padding-right: 1rem;
    padding-left: 1rem;
}
.vertical .main-nav-items[data-v-ec38a75b] {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}
.nav-item[data-v-ec38a75b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    border-radius: 0 0 0.85rem 0.85rem;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.2s ease;
}
.horizontal .nav-item[data-v-ec38a75b] {
    flex: 1 1 0;
    min-width: 0;
}
.vertical .nav-item[data-v-ec38a75b] {
    width: 100%;
    margin-bottom: 1rem;
}
.nav-item i[data-v-ec38a75b] {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.nav-item[data-v-ec38a75b]:hover {
    color: var(--p-primary-500);
    background-color: var(--p-surface-100);
}
.nav-item[data-v-ec38a75b]:active {
    transform: translateY(1px);
}
.main-nav-items--interaction-locked .nav-item[data-v-ec38a75b]:active {
    transform: none;
}
.nav-item--faded[data-v-ec38a75b] {
    pointer-events: none !important;
}
.nav-item--collapsed-labels .nav-label[data-v-ec38a75b] {
    opacity: 0;
    transform: translateY(5px);
}
.nav-custom-icon[data-v-ec38a75b] {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
}
.nav-custom-icon.pulse-wiggle-active[data-v-ec38a75b] {
    animation: pulse-wiggle-ec38a75b 4s ease-in-out infinite;
    animation-delay: 1s;
}
@keyframes pulse-wiggle-ec38a75b {
0%,
    70%,
    100% {
      color: var(--p-surface-700);
      transform: none;
}
75% {
      transform: scale(1.15);
}
82% {
      color: var(--p-brand-500);
      transform: scale(1.15) rotate(-4deg);
}
89% {
      color: var(--p-brand-500);
      transform: scale(1.15) rotate(4deg);
}
96% {
      transform: scale(1.15) rotate(-2deg);
}
}
.nav-item.active[data-v-ec38a75b] {
    color: var(--p-primary-800);
    background-color: var(--p-primary-50);
    box-shadow: 0 6px 14px -10px var(--p-primary-500);
}
.nav-label[data-v-ec38a75b] {
    font-size: 0.8rem;
    transition:
      opacity 0.18s ease,
      transform 0.2s ease;
}
.nav-icon-container[data-v-ec38a75b] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unread-badge-nav[data-v-ec38a75b] {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: var(--p-primary-500);
    color: white;
    border-radius: 50%;
    min-width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.125rem;
    box-sizing: border-box;
    z-index: 10;
}
.view-as-revert-overlay[data-v-ec38a75b] {
    position: absolute;
    right: -0.3rem;
    bottom: -0.2rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--p-primary-600);
    color: var(--p-primary-0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px
      color-mix(in srgb, var(--p-primary-0) 35%, transparent);
    z-index: 11;
    pointer-events: none;
}
.view-as-revert-overlay i[data-v-ec38a75b] {
    font-size: 0.55rem;
    margin: 0;
}
.sub-nav-layer[data-v-ec38a75b] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    padding: 0;
    display: flex;
}
.sub-nav-layer--active[data-v-ec38a75b] {
    pointer-events: auto;
}
.horizontal .sub-nav-layer[data-v-ec38a75b] {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 1rem;
}
.vertical .sub-nav-layer[data-v-ec38a75b] {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 90px;
    padding-bottom: 1rem;
}
.sub-nav-items[data-v-ec38a75b] {
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 100%;
    align-items: flex-start;
}
.horizontal .sub-nav-items[data-v-ec38a75b] {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
}
.vertical .sub-nav-items[data-v-ec38a75b] {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.sub-nav-item[data-v-ec38a75b] {
    color: var(--p-primary-0) !important;
    flex: 1;
    min-width: 0;
    border-radius: 0 0 0.85rem 0.85rem;
    max-height: 4rem;
    transition:
      background-color 0.2s ease,
      transform 0.18s ease,
      box-shadow 0.2s ease,
      color 0.2s ease;
}
.vertical .sub-nav-item[data-v-ec38a75b] {
    width: 100%;
    min-height: 0;
    margin-bottom: 1rem;
}
.sub-nav-item i[data-v-ec38a75b] {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.sub-nav-icon-wrap[data-v-ec38a75b] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sub-nav-label[data-v-ec38a75b] {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    line-height: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sub-nav-item[data-v-ec38a75b]:hover {
    background-color: color-mix(in srgb, var(--p-primary-500) 55%, white 16%);
    color: var(--p-surface-0);
    box-shadow: inset 0 0 0 1px
      color-mix(in srgb, var(--p-primary-0) 24%, transparent);
}
.sub-nav-item[data-v-ec38a75b]:active {
    transform: translateY(1px) scale(0.98);
    background-color: color-mix(in srgb, var(--p-primary-500) 52%, black 12%);
}
.sub-nav-item[data-v-ec38a75b]:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--p-primary-0) 70%, transparent);
    outline-offset: -2px;
}
.sub-nav-item.active[data-v-ec38a75b] {
    background-color: color-mix(in srgb, var(--p-primary-500) 55%, black 10%);
    box-shadow: inset 0 0 0 1px
      color-mix(in srgb, var(--p-primary-0) 36%, transparent);
}
.sub-nav-create-credit-badge[data-v-ec38a75b] {
    position: absolute;
    top: -0.35rem;
    right: -0.65rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--p-primary-500) 62%, black 16%);
    color: var(--p-primary-0);
    font-size: 0.63rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px
      color-mix(in srgb, var(--p-primary-0) 22%, transparent);
    pointer-events: none;
}
.sub-nav-view-as-list[data-v-ec38a75b] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    gap: 0.2rem;
    margin-left: 0.2rem;
}
.vertical .sub-nav-view-as-list[data-v-ec38a75b] {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    height: auto;
}
.sub-nav-avatar-item[data-v-ec38a75b] {
    flex: 1;
    min-width: 0;
    max-height: 5rem;
    background: transparent;
    border: none;
    color: var(--p-primary-0);
    padding-top: 0.25rem !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.sub-nav-avatar-wrap[data-v-ec38a75b] {
    position: relative;
    display: inline-flex;
    margin-bottom: 0.2rem;
}
.sub-nav-revert-overlay[data-v-ec38a75b] {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--p-primary-700);
    color: var(--p-primary-0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px
      color-mix(in srgb, var(--p-primary-0) 35%, transparent);
}
.sub-nav-revert-overlay i[data-v-ec38a75b] {
    font-size: 0.55rem;
    margin: 0;
}
.view-as-avatars-move[data-v-ec38a75b],
  .view-as-avatars-enter-active[data-v-ec38a75b],
  .view-as-avatars-leave-active[data-v-ec38a75b] {
    transition: all 240ms ease;
}
.view-as-avatars-enter-from[data-v-ec38a75b],
  .view-as-avatars-leave-to[data-v-ec38a75b] {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
}

.banner-container[data-v-b922fbc0] {
    position: relative;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.banner-rounded[data-v-b922fbc0] {
    border-radius: 0 0 0.5rem 0.5rem;
}
.banner-shadow[data-v-b922fbc0] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.banner-content[data-v-b922fbc0] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
}
.banner-icon[data-v-b922fbc0] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1rem;
}
.banner-text[data-v-b922fbc0] {
    flex: 1;
    min-width: 0;
}
.banner-title[data-v-b922fbc0] {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}
.banner-message[data-v-b922fbc0] {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
}
.banner-actions[data-v-b922fbc0] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.banner-close[data-v-b922fbc0] {
    flex-shrink: 0;
}
.banner-close-button[data-v-b922fbc0] {
    color: inherit !important;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.banner-close-button[data-v-b922fbc0]:hover {
    opacity: 1;
}

  /* Variant styles */
.banner-info[data-v-b922fbc0] {
    background-color: var(--p-primary-50);
    border-color: var(--p-primary-200);
    color: var(--p-primary-700);
}
.banner-info .banner-icon[data-v-b922fbc0] {
    background-color: var(--p-primary-100);
    color: var(--p-primary-600);
}
.banner-success[data-v-b922fbc0] {
    background-color: var(--p-primary-50);
    border-color: var(--p-primary-200);
    color: var(--p-primary-700);
}
.banner-success .banner-icon[data-v-b922fbc0] {
    background-color: var(--p-primary-100);
    color: var(--p-primary-600);
}
.banner-warning[data-v-b922fbc0] {
    background-color: var(--p-warning-50);
    border-color: var(--p-warning-200);
    color: var(--p-warning-700);
}
.banner-warning .banner-icon[data-v-b922fbc0] {
    background-color: var(--p-warning-100);
    color: var(--p-warning-600);
}
.banner-danger[data-v-b922fbc0] {
    background-color: var(--p-danger-50);
    border-color: var(--p-danger-200);
    color: var(--p-danger-700);
}
.banner-danger .banner-icon[data-v-b922fbc0] {
    background-color: var(--p-danger-100);
    color: var(--p-danger-600);
}
.banner-primary[data-v-b922fbc0] {
    background-color: var(--p-brand-500);
    border-color: var(--p-brand-600);
    color: white;
}
.banner-primary .banner-icon[data-v-b922fbc0] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}
.banner-primary .banner-close-button[data-v-b922fbc0] {
    color: white !important;
}

  /* Responsive adjustments */
@media (max-width: 640px) {
.banner-content[data-v-b922fbc0] {
      padding: 0.75rem;
      gap: 0.5rem;
}
.banner-icon[data-v-b922fbc0] {
      width: 1.5rem;
      height: 1.5rem;
      font-size: 0.875rem;
}
.banner-title[data-v-b922fbc0] {
      font-size: 0.875rem;
}
.banner-message[data-v-b922fbc0] {
      font-size: 0.8125rem;
}
.banner-actions[data-v-b922fbc0] {
      flex-direction: column;
      align-items: stretch;
      gap: 0.375rem;
}
}

  /* Transition styles */
.slide-down-enter-active[data-v-b922fbc0],
  .slide-down-leave-active[data-v-b922fbc0] {
    transition: all 0.3s ease;
}
.slide-down-enter-from[data-v-b922fbc0] {
    transform: translateY(-100%);
    opacity: 0;
}
.slide-down-leave-to[data-v-b922fbc0] {
    transform: translateY(-100%);
    opacity: 0;
}

  /* Dark mode support */
@media (prefers-color-scheme: dark) {
.banner-info[data-v-b922fbc0] {
      background-color: var(--p-primary-900);
      border-color: var(--p-primary-700);
      color: var(--p-primary-100);
}
.banner-info .banner-icon[data-v-b922fbc0] {
      background-color: var(--p-primary-800);
      color: var(--p-primary-200);
}
.banner-success[data-v-b922fbc0] {
      background-color: var(--p-primary-900);
      border-color: var(--p-primary-700);
      color: var(--p-primary-100);
}
.banner-success .banner-icon[data-v-b922fbc0] {
      background-color: var(--p-primary-800);
      color: var(--p-primary-200);
}
.banner-warning[data-v-b922fbc0] {
      background-color: var(--p-warning-900);
      border-color: var(--p-warning-700);
      color: var(--p-warning-100);
}
.banner-warning .banner-icon[data-v-b922fbc0] {
      background-color: var(--p-warning-800);
      color: var(--p-warning-200);
}
.banner-danger[data-v-b922fbc0] {
      background-color: var(--p-danger-900);
      border-color: var(--p-danger-700);
      color: var(--p-danger-100);
}
.banner-danger .banner-icon[data-v-b922fbc0] {
      background-color: var(--p-danger-800);
      color: var(--p-danger-200);
}
}

.banner-action-button[data-v-b0aaac66] {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}
.banner-action-button[data-v-b0aaac66]:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: white !important;
    transform: translateY(-1px);
}
.banner-action-enable[data-v-b0aaac66]:hover {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: #22c55e !important;
    color: #dcfce7 !important;
}
.banner-action-disable[data-v-b0aaac66]:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #ef4444 !important;
    color: #fecaca !important;
}

  /* Responsive adjustments */
@media (max-width: 640px) {
.banner-action-button[data-v-b0aaac66] {
      font-size: 0.8125rem !important;
      padding: 0.4rem 0.75rem !important;
}
}

  /* Custom styles for pending notifications banner actions */
.button-slim[data-v-6b038289] {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
}

  /* Responsive adjustments */
@media (max-width: 640px) {
.button-slim[data-v-6b038289] {
      font-size: 0.8125rem;
      padding: 0.3rem 0.6rem;
}
}

.banners-container[data-v-c8d0be59] {
    position: relative;
    width: 100%;
}
.banner-slide-up-enter-active[data-v-c8d0be59],
  .banner-slide-up-leave-active[data-v-c8d0be59] {
    transition:
      transform 260ms ease,
      opacity 260ms ease,
      max-height 260ms ease,
      margin-top 260ms ease,
      margin-bottom 260ms ease,
      padding-top 260ms ease,
      padding-bottom 260ms ease;
    overflow: hidden;
}
.banner-slide-up-enter-from[data-v-c8d0be59] {
    opacity: 0;
    transform: translateY(-10px);
}
.banner-slide-up-enter-to[data-v-c8d0be59] {
    opacity: 1;
    transform: translateY(0);
}
.banner-slide-up-leave-from[data-v-c8d0be59] {
    opacity: 1;
    transform: translateY(0);
    max-height: 240px;
}
.banner-slide-up-leave-to[data-v-c8d0be59] {
    opacity: 0;
    transform: translateY(-100%);
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.main-layout[data-v-f9a1ad15] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

  /* Mobile Layout Styles */
.mobile-layout[data-v-f9a1ad15] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.top-nav[data-v-f9a1ad15] {
    height: 80px;
}
.bottom-nav[data-v-f9a1ad15] {
    height: 70px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.mobile-layout .content[data-v-f9a1ad15] {
    flex: 1;
    overflow-y: auto;
}

  /* Desktop/Tablet Layout Styles */
.desktop-layout[data-v-f9a1ad15] {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.side-nav[data-v-f9a1ad15] {
    width: 80px;
    height: 100%;
}
.main-content[data-v-f9a1ad15] {
    flex: 1;
    display: flex;
    overflow: hidden;
}
.notification-banner-container[data-v-f9a1ad15] {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.main-layout-content[data-v-f9a1ad15] {
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.main-container[data-v-d38737dd] {
    font-family: Arial, sans-serif;
}
.request-empty-state[data-v-d38737dd] {
    color: var(--p-surface-400) !important;
}
.request-empty-state-icon[data-v-d38737dd] {
    color: var(--p-surface-300) !important;
}

.view-layout[data-v-9a9642d9] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

  /* Mobile Layout */
.mobile-layout[data-v-9a9642d9] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.mobile-layout .contextual-nav[data-v-9a9642d9] {
}
.mobile-layout .main-content[data-v-9a9642d9] {
    flex: 1;
    overflow-y: auto;
}

  /* Desktop Layout */
.desktop-layout[data-v-9a9642d9] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.desktop-layout .contextual-nav[data-v-9a9642d9] {
}
.desktop-layout .content-container[data-v-9a9642d9] {
    flex: 1;
    display: flex;
    overflow-y: auto;
}

.split-view[data-v-82e24d1d] {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.left-panel[data-v-82e24d1d] {
    overflow: auto;
    height: 100%;
    flex-shrink: 0;
    background-color: var(--p-surface-ground);
}
.right-panel[data-v-82e24d1d] {
    flex: 1;
    height: 100%;
    overflow: auto;
}
.resizer[data-v-82e24d1d] {
    width: 4px;
    height: 100%;
    background-color: var(--p-divider-color, #e4e4e4);
    cursor: col-resize;
    flex-shrink: 0;
}
.resizer[data-v-82e24d1d]:hover {
    background-color: var(--primary-color);
}

.responsive-split-view[data-v-29af7ffa] {
    height: 100%;
    width: 100%;
}
.mobile-view[data-v-29af7ffa] {
    height: 100%;
    width: 100%;
}
.left-panel[data-v-29af7ffa],
  .right-panel[data-v-29af7ffa] {
    height: 100%;
}

  /* src/views/ChatPlaceholder.vue
 * Styles for the chat placeholder shown when no chat is selected
 */
.no-chat-selected[data-v-1be77176] {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--p-primary-500);
    color: var(--p-primary-0);
}
.chat-placeholder-content[data-v-1be77176] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.chat-placeholder-content .pi[data-v-1be77176] {
    font-size: 3.5rem;
    color: var(--p-primary-200);
    margin-bottom: 1rem;
}
.chat-placeholder-content p[data-v-1be77176] {
    color: var(--p-primary-100);
    font-size: 1.25rem; /* Tailwind text-xl */
    margin-bottom: 1rem;
}
.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:flex}.vue-recycle-scroller__slot{flex:auto 0 0}.vue-recycle-scroller__item-wrapper{flex:1;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}
.no-avatar-image[data-v-11fc67f2] {
    background-color: rgba(from var(--p-primary-900) r g b / 1);
    color: var(--p-primary-100);
    border: 2px solid rgba(from var(--p-primary-100) r g b / 1) !important;
}
@media (prefers-color-scheme: dark) {
.no-avatar-image[data-v-11fc67f2] {
      background-color: rgba(from var(--p-surface-0) r g b / 1);
      color: var(--p-surface-700);
      border: 2px solid rgba(from var(--p-surface-400) r g b / 1) !important;
}
}
.avatar-with-border[data-v-11fc67f2] {
    border: 2px solid var(--p-surface-0);
    transition: border-color 0.2s ease;
}

  /* Size-specific border thickness */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][data-v-11fc67f2] {
    border-width: 2px;
}

  /* Large avatars get thicker borders */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][class*='large'][data-v-11fc67f2] {
    border-width: 3px;
}

  /* XLarge avatars get even thicker borders */
.avatar-with-border[data-pc-name='avatar'][data-pc-section='root'][class*='xlarge'][data-v-11fc67f2] {
    border-width: 4px;
}
.highlighted-avatar[data-v-11fc67f2] {
    border-color: var(--p-primary-500) !important;
}
.loading-avatar[data-v-11fc67f2] {
    opacity: 0.5;
}
.progress-knob[data-v-11fc67f2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.media-error[data-v-11fc67f2] {
    margin-top: 0.25rem;
    text-align: center;
}

  /* Dark mode support */
@media (prefers-color-scheme: dark) {
.avatar-with-border[data-v-11fc67f2] {
      border-color: var(--p-surface-700);
}
.highlighted-avatar[data-v-11fc67f2] {
      border-color: var(--p-primary-400) !important;
}
}

.typing-notification-container[data-v-acb10d68] {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.typing-hidden[data-v-acb10d68] {
    display: none !important;
}
.typing-avatars[data-v-acb10d68] {
    display: flex;
    align-items: center;
}
.typing-avatar[data-v-acb10d68] {
    border: none !important;
    background: none !important;
}
.typing-avatar-wrapper[data-v-acb10d68] {
    border-radius: 50%;
    background: var(--p-surface-0);
    display: flex;
}
.typing-indicator-card[data-v-acb10d68] {
    background-color: var(--p-surface-0);
    opacity: 0.8;
    height: 18px;
    border-radius: 12px;
    padding: 2px 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}
.typing-dots[data-v-acb10d68] {
    display: flex;
    gap: 2px;
    font-weight: bold;
    color: var(--p-surface-600);
    line-height: 1;
    padding-bottom: 2px;
}
.typing-dots span[data-v-acb10d68] {
    animation: typing-bounce-acb10d68 1.4s infinite both;
    font-size: 1rem;
}
.typing-dots span[data-v-acb10d68]:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dots span[data-v-acb10d68]:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typing-bounce-acb10d68 {
0%,
    80%,
    100% {
      transform: translateY(0);
}
40% {
      transform: translateY(-4px);
}
}
@keyframes border-angle-rotate-601efc8e {
from {
    --border-angle: 0deg;
}
to {
    --border-angle: 360deg;
}
}
.chat-list-item-wrapper[data-v-601efc8e] {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  cursor: pointer;
  gap: 0rem;
  width: 100%;
  height: var(--chat-row-h);
  transition: transform 0.2s ease;
}
.chat-list-item-wrapper[data-v-601efc8e]:active {
  transform: scale(0.98);
}
.last-message-content[data-v-601efc8e] {
  transition: opacity 0.5s ease;
}
.chat-list-item-card[data-v-601efc8e] {
  flex-grow: 1;
  margin-left: -1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0rem 0.75rem;
  padding-left: 1.8rem;
  border-radius: 2rem 1rem 1rem 2rem;
  min-height: 4rem;
  max-height: 4rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: rgb(from var(--p-frost-950) r g b/0.3);
}
.chat-list-item-card.card--glass[data-v-601efc8e] {
  --blur: 5px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background-image: linear-gradient(90deg, rgb(from var(--p-primary-frost-300) r g b/0.3), rgb(from var(--p-primary-frost-300) r g b/0.05));
}
.chat-list-item-card.card--glass[data-v-601efc8e]:before, .chat-list-item-card.card--glass[data-v-601efc8e]:after {
  border-radius: inherit;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.chat-list-item-card.card--glass[data-v-601efc8e]:before {
  border: 2px solid rgb(from var(--p-frost-0) r g b/0.8);
  mask-image: linear-gradient(135deg, var(--p-frost-0), transparent 50%);
}
.chat-list-item-card.card--glass[data-v-601efc8e]:after {
  border: 2px solid var(--p-primary-frost-500);
  mask-image: linear-gradient(135deg, transparent 50%, var(--p-frost-0));
  opacity: 0.5;
}
.chat-list-item-card[data-v-601efc8e]:hover {
  background-color: rgb(from var(--p-frost-0) r g b/0.15);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}
.gleam-overlay[data-v-601efc8e] {
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgb(from var(--p-frost-0) r g b/0.4) 30%, transparent 60%);
  pointer-events: none;
  animation: gleam-601efc8e 5s ease-out infinite;
  animation-delay: 2s;
  z-index: 2;
}
.chat-list-item-unread .chat-list-item-card[data-v-601efc8e] {
  background-color: rgb(from var(--p-primary-frost-300) r g b/0.7);
  border-bottom: 2px solid rgb(from var(--p-frost-0) r g b/0.3);
  box-shadow: 0 4px 12px rgb(from var(--p-primary-frost-500) r g b/0.2);
}
.chat-list-item-unread .chat-list-item-card.card--glass[data-v-601efc8e] {
  --blur: 2px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background-image: linear-gradient(90deg, rgb(from var(--p-frost-0) r g b/0.2), rgb(from var(--p-frost-0) r g b/0.05));
}
@keyframes gleam-601efc8e {
0% {
    left: -120%;
}
15% {
    left: 120%;
}
100% {
    left: 120%;
}
}
.chat-list-item-pending[data-v-601efc8e] {
  --border-angle: 0deg;
  --inner-bg: rgb(from var(--p-frost-0) r g b/0.1);
  --border-color: var(--p-primary-frost-500);
  --animation-speed: 3s;
  animation: border-angle-rotate-601efc8e var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
}
.chat-list-item-not-allowed[data-v-601efc8e] {
  --border-angle: 0deg;
  --inner-bg: rgb(from var(--p-frost-0) r g b/0.05);
  --border-color: var(--p-danger-300);
  --animation-speed: 3s;
  animation: border-angle-rotate-601efc8e var(--animation-speed) infinite linear;
  border: 2.5px solid transparent;
  background: linear-gradient(var(--inner-bg), var(--inner-bg)) padding-box, conic-gradient(from var(--border-angle), var(--inner-bg) 50%, var(--border-color)) border-box;
}
.chat-list-item-denied[data-v-601efc8e] {
  opacity: 0.6;
  filter: grayscale(0.5);
}
.avatar-container[data-v-601efc8e] {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.content[data-v-601efc8e] {
  flex-grow: 1;
  overflow: hidden;
  min-width: 0;
  padding-right: 0.5rem;
  z-index: 1;
}
.chat-title[data-v-601efc8e] {
  font-size: 1.1rem;
  font-weight: 500;
  -webkit-text-stroke: 0.1px; /* Adjust this value by 0.1 increments */
  margin: 0;
  color: var(--p-frost-0);
  /* font dropshadow */
  text-shadow: 0 0 4px rgba(from var(--p-frost-950) r g b/0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}
.last-message[data-v-601efc8e] {
  font-size: 0.85rem;
  color: var(--p-frost-0);
  /* font dropshadow */
  text-shadow: 0 0 4px rgba(from var(--p-frost-950) r g b/0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  height: 1.25rem;
  margin-top: 0.1rem;
  transition: all 0.3s ease;
}
.sender-name[data-v-601efc8e] {
  font-weight: 500;
  -webkit-text-stroke: 0.2px; /* Adjust this value by 0.1 increments */
  margin-right: 0.25rem;
  flex-shrink: 0;
}
.actions[data-v-601efc8e] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.25rem;
  min-width: 4rem;
  flex-shrink: 0;
  z-index: 1;
}
.right-side-top[data-v-601efc8e] {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.status-icons[data-v-601efc8e] {
  display: flex;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgb(from var(--p-frost-0) r g b/0.6);
}
.status-icon-info[data-v-601efc8e] {
  color: rgb(from var(--p-frost-0) r g b/0.6);
}
.status-icon-warning[data-v-601efc8e] {
  color: var(--p-warning-500);
}
.unread-badge[data-v-601efc8e] {
  background-color: var(--p-primary-frost-500);
  color: white;
  border-radius: 1rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}
.timestamp[data-v-601efc8e] {
  font-size: 0.7rem;
  color: rgb(from var(--p-frost-0) r g b/0.7);
  font-weight: 500;
}
.timestamp-restricted[data-v-601efc8e] {
  color: var(--p-danger-500);
}
.chat-list-item-no-wallpaper .chat-list-item-card .chat-title[data-v-601efc8e] {
  color: var(--p-frost-0);
  text-shadow: none;
}
.chat-list-item-no-wallpaper .chat-list-item-card .last-message[data-v-601efc8e] {
  color: var(--p-frost-950);
  text-shadow: none;
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card[data-v-601efc8e] {
  background-color: rgba(from var(--p-primary-500) r g b/0.075);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none;
  border: 2px solid var(--p-primary-200);
  /* diagonal blue gradient from top for first 30% */
  background-image: linear-gradient(350deg, rgba(from var(--p-primary-600) r g b/0.1), transparent 50%);
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card[data-v-601efc8e]:before, .chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card[data-v-601efc8e]:after {
  display: none !important;
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .chat-title[data-v-601efc8e] {
  color: var(--p-primary-800);
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .sender-name[data-v-601efc8e] {
  color: var(--p-primary-800);
  opacity: 0.8;
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .last-message[data-v-601efc8e] {
  color: var(--p-surface-800);
}
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .status-icons[data-v-601efc8e],
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .status-icon-info[data-v-601efc8e],
.chat-list-item-no-wallpaper:not(.chat-list-item-unread) .chat-list-item-card .timestamp[data-v-601efc8e] {
  color: var(--p-surface-500);
}

/* dark mode */
@media (prefers-color-scheme: dark) {
.chat-list-item-no-wallpaper .chat-list-item-card[data-v-601efc8e] {
    background-color: var(--p-frost-900) !important;
    border: 1px solid var(--p-frost-700) !important;
}
.chat-list-item-no-wallpaper .chat-list-item-card .chat-title[data-v-601efc8e] {
    color: var(--p-frost-0) !important;
}
.chat-list-item-no-wallpaper .chat-list-item-card .last-message[data-v-601efc8e] {
    color: var(--p-frost-400) !important;
}
.chat-list-item-no-wallpaper .chat-list-item-card .status-icons[data-v-601efc8e],
  .chat-list-item-no-wallpaper .chat-list-item-card .status-icon-info[data-v-601efc8e],
  .chat-list-item-no-wallpaper .chat-list-item-card .timestamp[data-v-601efc8e] {
    color: var(--p-frost-500) !important;
}
}
.search-message-item-hidden[data-v-1b74fd4d] {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.search-message-item[data-v-1b74fd4d] {
    width: 100%;
    border: 1px solid var(--p-surface-200);
    background: var(--p-surface-0);
    border-radius: 0.9rem;
    padding: 0.4rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    transition: background-color 0.2s ease;
}
.search-message-item[data-v-1b74fd4d]:hover {
    background: var(--p-surface-50);
}
.avatar-wrap[data-v-1b74fd4d] {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-wrap[data-v-1b74fd4d] {
    min-width: 0;
    flex: 1 1 auto;
}
.row-top[data-v-1b74fd4d] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.1;
    margin-bottom: 0.18rem;
}
.sender[data-v-1b74fd4d] {
    font-weight: 600;
    color: var(--p-surface-900);
}
.chat-name[data-v-1b74fd4d] {
    color: var(--p-surface-500);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 45%;
}
.time[data-v-1b74fd4d] {
    margin-left: auto;
    color: var(--p-surface-500);
    white-space: nowrap;
}
.excerpt[data-v-1b74fd4d] {
    font-size: 0.84rem;
    color: var(--p-surface-700);
    line-height: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hit[data-v-1b74fd4d] {
    background: var(--p-primary-100);
    border-radius: 0.25rem;
    padding: 0 0.05rem;
    color: var(--p-surface-900);
}
.slide-action-container[data-v-0e659540] {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*background: var(--p-surface-0); */
}
.action-underlay[data-v-0e659540] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
}
.underlay-left[data-v-0e659540] {
  left: 0;
  right: 0;
  padding-left: 1rem;
  justify-content: flex-start;
}
.underlay-right[data-v-0e659540] {
  left: 0;
  right: 0;
  padding-right: 1rem;
  justify-content: flex-end;
}
.slide-action-content[data-v-0e659540] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
.slide-action-icon[data-v-0e659540] {
  font-size: 1.5rem;
}
.slide-content[data-v-0e659540] {
  position: relative;
  z-index: 2;
  /* background: var(--p-surface-0) !important; */
  background: transparent;
  width: 100%;
  user-select: none;
  touch-action: pan-y; /* Allow vertical scrolling but handle horizontal ourselves */
}
.slide-content--disabled[data-v-0e659540] {
  touch-action: auto; /* Allow normal scrolling when disabled */
}
.is-sliding .slide-content[data-v-0e659540] {
  user-select: none;
}
.not-found-state[data-v-1732b88d] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 1rem;
}
.not-found-state--compact[data-v-1732b88d] {
    min-height: auto;
    padding: 0.5rem;
}
.not-found-state-card[data-v-1732b88d] {
    width: min(34rem, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    border: 1px solid
      color-mix(in srgb, var(--p-primary-300) 42%, var(--p-surface-200));
    background: color-mix(in srgb, var(--p-primary-50) 46%, var(--p-surface-0));
    color: var(--p-surface-900);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.not-found-state--compact .not-found-state-card[data-v-1732b88d] {
    width: min(30rem, 100%);
    padding: 0.8rem 0.9rem;
    border-radius: 0.75rem;
    gap: 0.45rem;
}
.not-found-state-icon[data-v-1732b88d] {
    font-size: 1.9rem;
    color: var(--p-primary-600);
}
.not-found-state--compact .not-found-state-icon[data-v-1732b88d] {
    font-size: 1.45rem;
}
.not-found-state-copy[data-v-1732b88d] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
}
.not-found-state-title[data-v-1732b88d] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--p-primary-900);
}
.not-found-state-message[data-v-1732b88d] {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.45;
    color: var(--p-surface-700);
}
.not-found-state-actions[data-v-1732b88d] {
    margin-top: 0.25rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}
@media (prefers-color-scheme: dark) {
.not-found-state-card[data-v-1732b88d] {
      border-color: color-mix(in srgb, var(--p-primary-500) 48%, var(--p-surface-500));
      background: color-mix(
        in srgb,
        var(--p-primary-900) 52%,
        rgba(0, 0, 0, 0.5) 48%
      );
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.not-found-state-icon[data-v-1732b88d] {
      color: var(--p-primary-300);
}
.not-found-state-title[data-v-1732b88d] {
      color: var(--p-primary-100);
}
.not-found-state-message[data-v-1732b88d] {
      color: var(--p-surface-100);
}
}

.color-grid[data-v-d798af16] {
    background: var(--p-primary-200);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}
.color-cell[data-v-d798af16] {
    position: relative;
    background: var(--p-primary-50);
    border-radius: 0.75rem;
    border: 2px solid transparent;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}
.color-cell[data-v-d798af16]:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: var(--p-primary-200);
}
.color-cell.is-selected[data-v-d798af16] {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}
.color-cell[data-v-d798af16]:active {
    transform: scale(0.95);
}
.squiggle-mask[data-v-d798af16] {
    width: 80%;
    height: 80%;
    /* A more hand-painted looking squiggle mask */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10,45 C15,25 35,20 45,30 S65,50 75,40 S95,20 90,50 S75,90 55,80 S15,100 10,70 S5,55 10,45' fill='black'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10,45 C15,25 35,20 45,30 S65,50 75,40 S95,20 90,50 S75,90 55,80 S15,100 10,70 S5,55 10,45' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.selected-indicator[data-v-d798af16] {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    z-index: 10;
    color: #ffffff;
    font-size: 0.875rem;
}
.dialog-footer[data-v-d798af16] {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 1rem;
}
.revert-button[data-v-d798af16] {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.revert-button[data-v-d798af16]:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.vue-recycle-scroller__item-wrapper {
    margin-bottom: 1.5rem;
}

.chat-menu-item[data-v-2fd9c0d5] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
    text-decoration: none;
}
.chat-menu-item-color-dot[data-v-2fd9c0d5] {
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
    border: 1px solid var(--p-surface-300);
    flex-shrink: 0;
}
@media (prefers-color-scheme: dark) {
.chat-menu-item-color-dot[data-v-2fd9c0d5] {
      border-color: var(--p-surface-600);
}
}
.chat-menu-item-label[data-v-2fd9c0d5] {
    margin-left: 0.5rem;
}
.chat-menu-item-label-selected[data-v-2fd9c0d5] {
    font-weight: 700;
}
.chat-menu-item-icon[data-v-2fd9c0d5] {
    margin-left: auto;
    color: var(--p-surface-500);
}
.chat-menu-item-icon-selected[data-v-2fd9c0d5] {
    color: var(--p-primary-500);
    font-size: 0.75rem;
}
.chats-container[data-v-2fd9c0d5] {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-left: 0.05rem;
    padding-right: 0.25rem;
    padding-top: 0.05rem;
}
.chats-list-wrapper[data-v-2fd9c0d5] {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
}
.chats-list[data-v-2fd9c0d5] {
    height: 100%;
    overflow-y: auto;
    gap: 0rem;

    /* Overlay mask: fully opaque to bottom 90%, then fade out bottom 10% */
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 95%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 95%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-position: bottom;
    -webkit-mask-position: bottom;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
.chats-list-container[data-v-2fd9c0d5] {
    flex-direction: column;
    display: flex;
    gap: 0rem;
}
.search-results-container[data-v-2fd9c0d5] {
    position: relative;
    height: 100%;
    padding: 0.2rem;
}
.search-close-button[data-v-2fd9c0d5] {
    position: absolute !important;
    top: 0.2rem !important;
    right: 0.2rem !important;
    left: auto !important;
    z-index: 6;
}
.search-results-scroll[data-v-2fd9c0d5] {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.05rem 0.1rem 0rem 0.1rem;
}
.search-section-title-wrap[data-v-2fd9c0d5] {
    display: flex;
    justify-content: center;
    margin-bottom: 0.45rem;
}
.search-section-title-pill[data-v-2fd9c0d5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid var(--p-surface-200);
    background: color-mix(in srgb, var(--p-primary-50) 28%, var(--p-surface-0));
    color: var(--p-surface-700);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}
.search-section-title-icon[data-v-2fd9c0d5] {
    font-size: 0.72rem;
    color: var(--p-primary-500);
}
.search-empty[data-v-2fd9c0d5] {
    font-size: 0.85rem;
    color: var(--p-surface-500);
    padding: 0.35rem 0.4rem;
}
.search-empty-global[data-v-2fd9c0d5] {
    padding-top: 0.75rem;
}
.search-section-spaced[data-v-2fd9c0d5] {
    margin-top: 0.5rem;
}
.search-messages-list[data-v-2fd9c0d5],
  .search-chats-list[data-v-2fd9c0d5] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.search-results-bottom-spacer[data-v-2fd9c0d5] {
    height: 4.5rem;
    flex: 0 0 auto;
}
.no-chats-message[data-v-2fd9c0d5] {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-controls-container[data-v-2fd9c0d5] {
    position: relative;
    margin: 0 1rem 0.5rem;
}
.search-toolbar[data-v-2fd9c0d5] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    min-height: 40px;
    width: 100%;
}
.search-expand-slot[data-v-2fd9c0d5] {
    flex: 1 1 auto;
    min-width: 40px;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
.search-actions-wrap[data-v-2fd9c0d5] {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.search-action-button[data-v-2fd9c0d5] {
    width: 40px;
    height: 40px;
}
.search-action-button-right-gap[data-v-2fd9c0d5] {
    margin-right: 0.5rem;
}
.search-action-button-spaced[data-v-2fd9c0d5] {
    margin-left: 0.5rem;
}
.search-status-overlay[data-v-2fd9c0d5] {
    position: absolute;
    left: 0.75rem;
    bottom: calc(100% + 10px);
    z-index: 4;
    pointer-events: none;
}
.search-status-pill[data-v-2fd9c0d5] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    background-color: var(--p-surface-0);
    border: 1px solid var(--p-surface-200);
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    color: var(--p-surface-700);
    font-size: 0.75rem;
    font-weight: 500;
    max-width: min(38rem, calc(100vw - 4rem));
}
.search-status-icon[data-v-2fd9c0d5] {
    color: var(--p-primary-500);
}
.wallpaper-menu-hidden[data-v-2fd9c0d5] {
    display: none;
}
.search-debug-dialog[data-v-2fd9c0d5] .p-dialog-content {
    max-height: 72vh;
    overflow-y: auto;
}
.search-debug-header[data-v-2fd9c0d5] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.search-debug-stat[data-v-2fd9c0d5] {
    font-size: 0.85rem;
    color: var(--p-surface-700);
    background: var(--p-surface-50);
    border: 1px solid var(--p-surface-200);
    border-radius: 0.5rem;
    padding: 0.35rem 0.55rem;
}
.search-debug-subtitle[data-v-2fd9c0d5] {
    font-size: 0.8rem;
    color: var(--p-surface-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.search-debug-id-list[data-v-2fd9c0d5] {
    margin-bottom: 0.85rem;
}
.search-debug-id-row[data-v-2fd9c0d5] {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--p-surface-700);
    padding: 0.15rem 0;
    border-bottom: 1px dotted var(--p-surface-200);
}
.search-debug-list[data-v-2fd9c0d5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.search-debug-row[data-v-2fd9c0d5] {
    border: 1px solid var(--p-surface-200);
    border-radius: 0.55rem;
    padding: 0.45rem 0.55rem;
    background: var(--p-surface-0);
}
.search-debug-row-hidden[data-v-2fd9c0d5] {
    border-color: var(--p-warning-300);
    background: rgba(from var(--p-warning-100) r g b / 0.4);
}
.search-debug-row-top[data-v-2fd9c0d5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.3rem;
}
.search-debug-pill[data-v-2fd9c0d5] {
    font-family: monospace;
    font-size: 0.72rem;
    background: var(--p-surface-100);
    border: 1px solid var(--p-surface-200);
    border-radius: 9999px;
    padding: 0.1rem 0.4rem;
}
.search-debug-pill-status[data-v-2fd9c0d5] {
    font-weight: 700;
}
.search-debug-row-meta[data-v-2fd9c0d5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--p-surface-700);
    margin-bottom: 0.25rem;
}
.search-debug-row-content[data-v-2fd9c0d5],
  .search-debug-row-reasons[data-v-2fd9c0d5] {
    font-size: 0.8rem;
    color: var(--p-surface-700);
    margin-top: 0.2rem;
    word-break: break-word;
}

.new-user-todos[data-v-567ce6bc] {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
    background: transparent;
}
.todos-container[data-v-567ce6bc] {
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    pointer-events: none;
    background: transparent;
    max-height: 40vh !important;
}
.todos-container.hidden[data-v-567ce6bc] {
    opacity: 0;
    transform: translateY(0px);
    transition:
      opacity 0.3s ease-in-out,
      transform 0.3s ease-in-out;
}
.todos-container.visible[data-v-567ce6bc] {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.3s ease-in-out,
      transform 0.3s ease-in-out;
}
.todos-card[data-v-567ce6bc] {
    display: grid;
    grid-template-rows: 1fr auto;
    border-color: var(--p-primary-200);
    background: var(--p-surface-0);
    border-radius: 1rem;
    border-width: 1px;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.todos-card-padding[data-v-567ce6bc] {
    padding: 1rem;
}
.todos-header[data-v-567ce6bc] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.todos-header-content[data-v-567ce6bc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.todos-icon[data-v-567ce6bc] {
    font-size: 1.5rem;
    padding-right: 0.5rem;
    line-height: 1;
    color: var(--p-primary-400);
}
.todos-text-block[data-v-567ce6bc] {
    display: flex;
    flex-direction: column;
}
.todos-title[data-v-567ce6bc] {
    color: var(--p-primary-600);
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0;
}
.todos-subtitle[data-v-567ce6bc] {
    color: var(--p-surface-500);
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}
.todos-grid[data-v-567ce6bc] {
    display: grid;
    gap: 0.25rem;
    overflow-y: auto;
    border: 1px solid var(--p-primary-200);
    background: var(--p-primary-50);
    border-radius: 0.375rem;
    padding: 0.25rem;
}
.todos-item[data-v-567ce6bc] {
    border-color: var(--p-primary-200);
    background: var(--p-primary-0);
    border-radius: 0.375rem;
    border-width: 1px;
}
.todos-item-padding[data-v-567ce6bc] {
    padding: 0.75rem;
}
.todos-item-content[data-v-567ce6bc] {
    display: grid;
    grid-template-columns: 1fr 100px;

    gap: 0.75rem;
}
.todos-item-text[data-v-567ce6bc] {
    display: flex;
    flex-direction: column;
}
.todos-item-title[data-v-567ce6bc] {
    font-weight: 600;
    color: var(--p-primary-600);
}
.todos-item-description[data-v-567ce6bc] {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--p-surface-500);
}

.indexing-debug-grid[data-v-2c4c131a] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}
.indexing-debug-stat[data-v-2c4c131a] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--p-surface-200);
    border-radius: 0.5rem;
    background: var(--p-surface-50);
    color: var(--p-surface-700);
    font-size: 0.84rem;
}
.indexing-debug-label[data-v-2c4c131a] {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--p-surface-500);
}
.indexing-help-icon[data-v-2c4c131a] {
    font-size: 0.68rem;
    color: var(--p-primary-500);
    cursor: help;
    opacity: 0.9;
}
.indexing-debug-message[data-v-2c4c131a] {
    margin-top: 0.7rem;
    padding: 0.5rem 0.55rem;
    border: 1px solid var(--p-surface-200);
    border-radius: 0.5rem;
    color: var(--p-surface-700);
    background: var(--p-surface-0);
    font-size: 0.84rem;
}
.indexing-debug-actions[data-v-2c4c131a] {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.user-list-item-button[data-v-56a7e461] {
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 500 !important;
    min-width: auto !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
}
.user-list-item-button[data-v-56a7e461] .p-button-icon {
    font-size: 0.7rem !important;
}
.user-list-item-button[data-v-56a7e461]:not(.user-list-item-button--icon-only)
    .p-button-icon {
    margin-right: 0.25rem !important;
}
.user-list-item-button--icon-only[data-v-56a7e461] {
    padding: 0.4rem !important;
    width: 2rem !important;
    height: 2rem !important;
}
.user-list-item-button--icon-only[data-v-56a7e461] .p-button-icon {
    margin: 0 !important;
}

  /* Ensure proper spacing between buttons */
.user-list-item-button + .user-list-item-button[data-v-56a7e461] {
    margin-left: 0.25rem;
}

.effective-user-select[data-v-155a546c] {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 67px;
    max-height: 67px;
    min-height: 67px;
    min-width: 67px;
    height: 67px;
    width: 67px;
    margin-bottom: -1.2rem;
    margin-right: -0.5rem;
    margin-top: 0.2rem;
}
.avatar-container[data-v-155a546c] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.2s ease;
}
.avatar-container[data-v-155a546c]:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.user-avatar-parent[data-v-155a546c] {
    z-index: 2;
}
.user-info[data-v-155a546c] {
    margin-left: 0.5rem;
    margin-right: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}
.user-info.hidden[data-v-155a546c] {
    display: none;
}
.user-handle[data-v-155a546c] {
    font-weight: 600;
}
.user-type[data-v-155a546c] {
    margin-left: 0.3rem;
    font-size: 0.85em;
    color: var(--text-color-secondary);
    margin-right: 0.75rem;
}

  /* Modal styles */
.modal-backdrop[data-v-155a546c] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    z-index: 1000;
}
.modal-content[data-v-155a546c] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    pointer-events: none;
}
.status-bar-spacer[data-v-155a546c] {
    height: 55px;
    background-color: transparent;
    width: 100%;
    flex-shrink: 0;
}
.avatar-container.centered[data-v-155a546c] {
    pointer-events: all;
    background-color: var(--p-surface-50);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 90%;
    max-width: 400px;
}
.avatar-container.opened[data-v-155a546c] {
    flex-direction: column;
}
.user-info.expanded[data-v-155a546c] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 0;
}
.current-user[data-v-155a546c] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
}
.user-selection[data-v-155a546c] {
    width: 100%;
}
.user-selection h3[data-v-155a546c] {
    font-size: 1rem;
    margin: 0.5rem 0;
    text-align: center;
}
.users-list[data-v-155a546c] {
    --users-list-fade-size: 1rem;
    margin: 0.5rem 0 0;
    width: 100%;
    max-height: min(40vh, 18rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: var(--users-list-fade-size);
    padding-bottom: var(--users-list-fade-size);
    margin-top: calc(0.5rem - var(--users-list-fade-size));
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) var(--users-list-fade-size),
      rgba(0, 0, 0, 1) calc(100% - var(--users-list-fade-size)),
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) var(--users-list-fade-size),
      rgba(0, 0, 0, 1) calc(100% - var(--users-list-fade-size)),
      rgba(0, 0, 0, 0) 100%
    );
}
.user-switch-item[data-v-155a546c] {
    margin-bottom: 0rem;
    border-radius: 0rem;
    border: 1px solid var(--p-surface-200);
    background: var(--p-surface-0);
    overflow: hidden;
}
.user-switch-item[data-v-155a546c]:hover {
    border-color: var(--p-primary-300);
    background: var(--p-primary-25);
}
.user-info-message[data-v-155a546c] {
    text-align: center;
    margin-top: 1rem;
    color: var(--p-surface-500);
    font-size: 0.9rem;
}
.view-as-text[data-v-155a546c] {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--p-surface-500);
}

  /* Action buttons styles */
.action-buttons[data-v-155a546c] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-border);
}
.action-buttons .button[data-v-155a546c] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
}
.action-buttons .button i[data-v-155a546c] {
    font-size: 0.875rem;
}

  /* Child Logout Dialog Styles */
.child-logout-content[data-v-155a546c] {
    width: 100%;
}
.logout-section[data-v-155a546c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.button-group[data-v-155a546c] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
.button-full[data-v-155a546c] {
    width: 100%;
}
.form-field[data-v-155a546c] {
    margin-bottom: 1rem;
    width: 100%;
}
.form-label[data-v-155a546c] {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-error[data-v-155a546c] {
    color: var(--p-red-500);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}
.instruction-list[data-v-155a546c] {
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    list-style-type: disc;
}
.instruction-list li[data-v-155a546c] {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.instruction-list li[data-v-155a546c]::marker {
    color: var(--p-primary-500);
}

  /* Info card styles */
.info-card[data-v-155a546c] {
    background: var(--p-primary-50);
    border: 1px solid var(--p-primary-200);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
}
.info-content[data-v-155a546c] {
    display: flex;
    align-items: flex-start;
}
.info-icon[data-v-155a546c] {
    color: var(--p-primary-500);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.info-text[data-v-155a546c] {
    color: var(--p-primary-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

  /* PrimeVue InputOtp styling */
[data-v-155a546c] .p-inputotp {
    justify-content: center;
    gap: 0.5rem;
}
[data-v-155a546c] .p-inputotp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

  /**
   * Copy-username pill (matches `SettingsDetails.vue` formatting, but uses
   * theme tokens suitable for this (light) view background.
   */
.copy-username-row[data-v-155a546c] {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem !important;
}
.profile-username[data-v-155a546c] {
    font-size: 0.85rem;
    color: var(--p-primary-700);
    border: 1px solid var(--p-primary-700);
    border-radius: 5rem;
    padding: 0.25rem 0.5rem;
    font-weight: 400;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.profile-username[data-v-155a546c]:hover {
    background-color: var(--p-primary-50);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    opacity: 1;
}
.username-clipboard-icon[data-v-155a546c] {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.profile-username:hover .username-clipboard-icon[data-v-155a546c] {
    opacity: 1;
}

  /* Management Cog Button */
.management-cog-button[data-v-155a546c] {
    position: absolute;
    top: calc(1rem + 30px);
    right: 1rem;
    background-color: var(--p-surface-50);
    border: 1px solid var(--p-surface-200);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; /* Ensure it's above other content */
    transition: background-color 0.2s ease;
}
.management-cog-button[data-v-155a546c]:hover {
    background-color: var(--p-surface-100);
}
.management-cog-button i[data-v-155a546c] {
    font-size: 1.25rem;
    color: var(--p-primary-500);
}

.simple-system-panel[data-v-c9f388fb] {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0.5rem;
}
.online-indicator[data-v-c9f388fb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 500ms ease;
}
.online-indicator--fading[data-v-c9f388fb] {
    opacity: 0;
}
.online-indicator--hidden[data-v-c9f388fb] {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
}

  /* App just gained focus: same look as online, but with blended icons */
.app-just-gained-focus-indicator[data-v-c9f388fb] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem; /* match medium icon size */
    height: 1.25rem;
}
.app-just-gained-focus-indicator .wifi-icon[data-v-c9f388fb],
  .app-just-gained-focus-indicator .offline-icon[data-v-c9f388fb] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* Inverse opacity animations to blend slashed/unslashed icons */
.base-fade[data-v-c9f388fb] {
    animation: fadeInOut-c9f388fb 1.6s ease-in-out infinite;
}
.overlay-fade[data-v-c9f388fb] {
    animation: fadeOutIn-c9f388fb 1.6s ease-in-out infinite;
}
@keyframes fadeInOut-c9f388fb {
0% {
      opacity: 1;
}
50% {
      opacity: 0;
}
100% {
      opacity: 1;
}
}
@keyframes fadeOutIn-c9f388fb {
0% {
      opacity: 0;
}
50% {
      opacity: 1;
}
100% {
      opacity: 0;
}
}
.pill[data-v-c9f388fb] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid transparent;
}
.offline-pill[data-v-c9f388fb] {
    background: var(--p-warning-100);
    border: 1px solid var(--p-warning-500);
    color: var(--p-warning-700);
}
.pill-text[data-v-c9f388fb] {
    font-weight: 600;
    font-size: 0.875rem;
}
.connect-button[data-v-c9f388fb] {
    height: 15px !important;
}
.connect-button[data-v-c9f388fb] .p-button-label {
    font-weight: 600;
}
.offline-icon[data-v-c9f388fb] {
    color: var(--p-warning-500);
}
.connecting-icon[data-v-c9f388fb] {
    color: var(--p-warning-500);
    /* pulse opacity */
    animation: pulse-c9f388fb 2s infinite;
}
@keyframes pulse-c9f388fb {
0% {
      opacity: 0.2;
}
50% {
      opacity: 1;
}
100% {
      opacity: 0.2;
}
}

  /* Connecting state: wide diagonal stripes animated sideways */
.connecting-pill[data-v-c9f388fb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: repeating-linear-gradient(
      135deg,
      var(--p-warning-100) 0px,
      var(--p-warning-100) 56px,
      var(--p-warning-200) 56px,
      var(--p-warning-200) 112px,
      var(--p-warning-100) 112px,
      var(--p-warning-100) 168px,
      var(--p-warning-200) 168px,
      var(--p-warning-200) 224px,
      var(--p-warning-100) 224px,
      var(--p-warning-100) 280px,
      var(--p-warning-200) 280px,
      var(--p-warning-200) 336px,
      var(--p-warning-100) 336px,
      var(--p-warning-100) 392px,
      var(--p-warning-200) 392px,
      var(--p-warning-200) 448px
    );
    background-size: 448px 100%;
    animation: slideBackground-c9f388fb 5s linear infinite;
    color: var(--p-warning-700);
    border: 1px solid var(--p-warning-500);
    height: 40px;
    width: 180px;
}
@keyframes slideBackground-c9f388fb {
0% {
      background-position: 0% 50%;
}
100% {
      background-position: 100% 50%;
}
}

  /* Error/Auth failed state */
.danger-pill[data-v-c9f388fb] {
    background: var(--p-danger-300);
    border: 1px solid var(--p-danger-600);
    color: var(--p-danger-900);
}
.danger-button[data-v-c9f388fb] {
    background: var(--p-danger-600);
    border-color: var(--p-danger-600);
    color: #fff;
    padding: 0.15rem 0.5rem;
    font-size: 0.8rem;
    height: 15px !important;
}

.contextual-nav-bar-container[data-v-25a70093] {
    position: relative;
    z-index: 500;
}
.contextual-nav-bar[data-v-25a70093] {
    height: 60px;
    width: 100%;
    background-color: var(--p-surface-0);
    /* box shadown  bottom ONLY*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    color: var(--p-surface-700);
}
.has-active-subscription[data-v-25a70093] {
    background-color: var(--p-primary-500);
    color: var(--p-primary-0) !important;
    border-bottom: 2px solid #ffffff;
}
.has-active-subscription[data-v-25a70093] .member-status-text {
    color: var(--p-primary-0) !important;
}
.has-active-subscription[data-v-25a70093] .pi-arrow-left {
    color: var(--p-primary-0) !important;
}
.has-active-subscription[data-v-25a70093] .pi-ellipsis-v {
    color: var(--p-primary-0) !important;
}
.has-active-subscription[data-v-25a70093] .pi-question-circle {
    color: var(--p-primary-0) !important;
}
.has-active-subscription[data-v-25a70093] .user-chat-action-icon {
    color: var(--p-primary-0) !important;
}

  /* Gleam / shine effect similar to XPToast */
.has-active-subscription[data-v-25a70093]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 30%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    pointer-events: none;
    animation: gleam-25a70093 5s ease-out once;
    animation-delay: 5s;
}
.subscription-icon[data-v-25a70093] {
    font-size: 1.2rem;
    color: #ffffff;
    animation: rotate-25a70093 20s linear infinite;
    animation-delay: 2.2s;
}
@keyframes rotate-25a70093 {
0% {
      transform: rotate(0deg) scale(1);
}
1% {
      transform: rotate(180deg) scale(1.25);
}
2% {
      transform: rotate(360deg) scale(1);
}
50% {
      transform: rotate(360deg);
}
51% {
      transform: rotate(180deg) scale(1.25);
}
52% {
      transform: rotate(0deg) scale(1);
}
}
@keyframes gleam-25a70093 {
0% {
      left: -120%;
      opacity: 0;
}
15% {
      opacity: 1;
}
30% {
      left: 120%;
      opacity: 0;
}
100% {
      left: 120%;
      opacity: 0;
}
}
.default-content[data-v-25a70093] {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}
.title[data-v-25a70093] {
    font-size: 1.5rem;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.actions[data-v-25a70093] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: max-content;
}
.actions[data-v-25a70093] .p-button {
    flex: 0 0 auto;
}
.system-status[data-v-25a70093] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: max-content;
}
.effective-user-selector[data-v-25a70093] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

  /* transition for fade */
.fade-enter-active[data-v-25a70093],
  .fade-leave-active[data-v-25a70093] {
    transition: opacity 1s ease;
}
.fade-enter-from[data-v-25a70093],
  .fade-leave-to[data-v-25a70093] {
    opacity: 0;
}

.emoji-selector[data-v-57af1f13] {
    width: 90vw;
    max-width: 600px;
    height: 90vh;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    background: var(--p-surface-0);
    border-radius: 8px;
    overflow: hidden;
}
.emoji-categories[data-v-57af1f13] {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    background: var(--p-surface-100);
    border-bottom: 1px solid var(--p-surface-200);
    gap: 0.25rem;
    flex-shrink: 0;
}
.emoji-categories .p-button[data-v-57af1f13] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
}
.emoji-categories .active-category[data-v-57af1f13] {
    background-color: var(--p-brand-500) !important;
    color: white !important;
}
.recent-emojis[data-v-57af1f13] {
    border-bottom: 1px solid var(--p-surface-200);
    padding: 0.75rem;
    background: var(--p-surface-50);
    flex-shrink: 0;
}
.recent-title[data-v-57af1f13] {
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--p-surface-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.emoji-row-horizontal[data-v-57af1f13] {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.emoji-grid-container[data-v-57af1f13] {
    flex: 1;
    overflow: hidden;
    padding: 0.75rem;
}
.emoji-grid-horizontal[data-v-57af1f13] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    align-content: flex-start;
    padding-bottom: 0.5rem;
}
.emoji-button[data-v-57af1f13] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.emoji-button[data-v-57af1f13]:hover {
    background-color: var(--p-surface-200);
}
.emoji-button[data-v-57af1f13]:active {
    background-color: var(--p-surface-300);
    transform: scale(0.95);
}

  /* Custom scrollbar for horizontal scrolling */
.emoji-row-horizontal[data-v-57af1f13]::-webkit-scrollbar,
  .emoji-grid-horizontal[data-v-57af1f13]::-webkit-scrollbar {
    height: 6px;
}
.emoji-row-horizontal[data-v-57af1f13]::-webkit-scrollbar-track,
  .emoji-grid-horizontal[data-v-57af1f13]::-webkit-scrollbar-track {
    background: var(--p-surface-100);
    border-radius: 3px;
}
.emoji-row-horizontal[data-v-57af1f13]::-webkit-scrollbar-thumb,
  .emoji-grid-horizontal[data-v-57af1f13]::-webkit-scrollbar-thumb {
    background: var(--p-surface-400);
    border-radius: 3px;
}
.emoji-row-horizontal[data-v-57af1f13]::-webkit-scrollbar-thumb:hover,
  .emoji-grid-horizontal[data-v-57af1f13]::-webkit-scrollbar-thumb:hover {
    background: var(--p-surface-500);
}

  /* Dark mode adjustments */
.dark .emoji-selector[data-v-57af1f13] {
    background: var(--p-surface-900);
}
.dark .emoji-categories[data-v-57af1f13] {
    background: var(--p-surface-800);
    border-bottom-color: var(--p-surface-700);
}
.dark .emoji-button[data-v-57af1f13]:hover {
    background-color: var(--p-surface-700);
}
.dark .emoji-button[data-v-57af1f13]:active {
    background-color: var(--p-surface-600);
}
.dark .recent-emojis[data-v-57af1f13] {
    background: var(--p-surface-800);
    border-bottom-color: var(--p-surface-700);
}

.cooldown-root[data-v-4c72d644] {
    position: relative;
    display: inline-flex;
}
.cooldown-base[data-v-4c72d644],
  .cooldown-overlay[data-v-4c72d644] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cooldown-overlay[data-v-4c72d644] {
    position: absolute;
    inset: 0;
}

.chat-input-container[data-v-d8bee25b] {
    padding: 0.75rem;
    background-color: var(--p-surface-100);
    display: flex;
    flex-direction: column;
    min-height: 6rem;
    max-height: 30vh; /* Allow expansion for reply component */
    overflow-y: visible;
    position: relative; /* Create positioning context for SpeedDial */
}
.limit-warning[data-v-d8bee25b] {
    display: flex;
    align-items: center;
    background-color: var(--p-warning-50);
    color: var(--p-warning-700);
    border: 1px solid var(--p-warning-300);
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.limit-warning i[data-v-d8bee25b] {
    margin-right: 0.5rem;
}
.chat-input-wrapper[data-v-d8bee25b] {
    display: flex;
    align-items: center;
    background-color: var(--p-surface-0, #ffffff);
    border-radius: 24px;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.chat-input-wrapper.disabled[data-v-d8bee25b] {
    opacity: 0.7;
    background-color: var(--p-surface-200);
}
.message-input[data-v-d8bee25b] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 0.5rem;
    color: var(--p-surface-900);
    border: 0px !important;
}
.message-input[data-v-d8bee25b]:disabled {
    background: transparent;
    color: var(--p-surface-600);
}
.attachment-icon[data-v-d8bee25b],
  .emoji-button[data-v-d8bee25b],
  .send-button[data-v-d8bee25b] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}
.attachment-icon[data-v-d8bee25b] {
    position: relative; /* Allow SpeedDial to position relative to this */
    overflow: visible; /* Allow SpeedDial menu to extend beyond container */
}
.sticker-button-inner[data-v-d8bee25b] {
    width: 2.5 rem !important;
    height: 2.5 rem !important;
    min-width: 2.5 rem !important;
    min-height: 2.5 rem !important;
    max-width: 2.5 rem !important;
    max-height: 2.5 rem !important;
    padding: 0.5rem;
    color: var(--p-primary-300);
    opacity: 0.5;
}
.sticker-button-inner[data-v-d8bee25b]:hover {
    color: var(--p-primary-500);
    opacity: 1;
}
.sticker-button-inner[data-v-d8bee25b]:disabled {
    color: var(--p-surface-500);
    opacity: 0.5;
}

.tooltip-help[data-v-6ce21b62] {
    display: flex;
    align-items: center;
}
.fade-enter-active[data-v-6ce21b62],
  .fade-leave-active[data-v-6ce21b62] {
    transition: opacity 3s ease-in-out;
}
.fade-enter-from[data-v-6ce21b62],
  .fade-leave-to[data-v-6ce21b62] {
    opacity: 0;
}

.wallpaper-container[data-v-739efb46] {
    border: 1px solid var(--p-surface-300);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.wallpaper-preview[data-v-739efb46] {
    width: var(--bd7bac2c);
    height: var(--v6d341983);
}
.wallpaper-image[data-v-739efb46] {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.wallpaper-placeholder[data-v-739efb46] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-progress[data-v-739efb46],
  .media-error[data-v-739efb46] {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-align: center;
}

.permissions-select[data-v-98cfd105] {
    background: var(--p-surface-0) !important;
    color: var(--p-surface-950) !important;
    border: 1px solid var(--p-surface-200) !important;
    border-radius: 8px;
}
.chat-settings-multi-select[data-v-98cfd105] {
    background: var(--p-surface-0) !important;
    color: var(--p-surface-950) !important;
    border: 1px solid var(--p-surface-200) !important;
    border-radius: 8px;
}
.chat-at-max-size-text[data-v-98cfd105] {
    color: var(--p-warning-500);
}
.members-list-info[data-v-98cfd105] {
    font-size: 0.875rem;
    color: var(--p-surface-500);
    margin-bottom: 0.5rem;
}
.members-table[data-v-98cfd105] {
    width: 100%;
}
.pending-request-item[data-v-98cfd105]:last-child {
    border-bottom: none;
}
.members-list[data-v-98cfd105] {
    width: 100%;
}
.member-item[data-v-98cfd105] {
    margin-bottom: 0.25rem;
}
.member-row[data-v-98cfd105] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: var(--p-surface-0);
    border-radius: 0.5rem;
    border: 1px solid var(--p-surface-200);
}
.member-avatar[data-v-98cfd105] {
    margin-right: 0.75rem;
}
.member-name[data-v-98cfd105] {
    flex: 1;
    font-weight: 500;
    color: var(--p-surface-900);
}
.member-admin[data-v-98cfd105] {
    margin-left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-icon[data-v-98cfd105] {
    color: var(--p-primary-500);
    font-size: 0.875rem;
    padding-right: 0.15rem;
}
.theme-section[data-v-98cfd105] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.25rem 0;
}
.theme-avatar-row[data-v-98cfd105] {
    display: flex;
    justify-content: center;
}
.theme-avatar-wrap[data-v-98cfd105] {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}
.theme-avatar-wrap-direct[data-v-98cfd105] {
    cursor: default !important;
}
.theme-avatar[data-v-98cfd105] {
    transition: opacity 0.2s ease;
}
.theme-avatar-wrap:not(.theme-avatar-wrap-direct):hover .theme-avatar[data-v-98cfd105] {
    opacity: 0.9;
}
.theme-name-row[data-v-98cfd105] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.theme-name-label[data-v-98cfd105] {
    font-size: 0.85rem;
    color: var(--p-surface-600);
    font-weight: 500;
}
.theme-wallpaper-row[data-v-98cfd105] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}
.theme-wallpaper-label[data-v-98cfd105] {
    font-size: 0.85rem;
    color: var(--p-surface-600);
    font-weight: 500;
}
.theme-wallpaper-wrap[data-v-98cfd105] {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.theme-wallpaper-row[data-v-98cfd105] .attachment-menu,
  .theme-wallpaper-row[data-v-98cfd105] .p-speeddial {
    display: block;
    width: 100%;
}
.theme-wallpaper-row[data-v-98cfd105] .p-speeddial-button {
    width: 100%;
    justify-content: flex-start;
}
.theme-wallpaper-preview[data-v-98cfd105] {
    border-radius: 0.75rem;
    width: 100%;
}
.theme-overlay-remove-button[data-v-98cfd105] {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
}
.theme-wallpaper-remove-button[data-v-98cfd105] {
    top: 0.55rem;
    right: 0.55rem;
}

.back-button[data-v-35439fd2] {
    padding: 0 !important;
    margin-right: 0rem !important;
    margin-left: -0.9rem !important;
    border-radius: 50% !important;
    min-width: 3rem !important;
    max-width: 3rem !important;
    min-height: 3rem !important;
    max-height: 3rem !important;
}
.back-button[data-v-35439fd2]:hover {
    background: var(--p-primary-500) !important;
    color: var(--p-primary-0) !important;
}
.back-button[data-v-35439fd2]:disabled {
    background: var(--p-surface-200) !important;
    color: var(--p-surface-500) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.chat-scroller[data-v-b776501f] {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
}
.chat-inner[data-v-b776501f] {
    position: relative;
    width: 100%;
}

  /* absolute rows like TanStack examples */
.chat-row[data-v-b776501f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}
.chat-header[data-v-b776501f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.chat-footer[data-v-b776501f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

  /* critical: prevents margin-collapse + gives a reliable measurable box */
.chat-row-measure[data-v-b776501f] {
    width: 100%;
    display: flow-root;
}

.actions-popover[data-v-0065ba23] {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    position: relative;
}
.actions-popover .top-row[data-v-0065ba23] {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}
  /* .emoji-selector-row {
    position: absolute;
    top: 110%;
    left: 0;
    max-width: 80vw;
    max-height: 40vh;
    overflow: hidden;
    background-color: var(--p-surface-0);
    border-radius: 16px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 0.3rem;
  } */
.emoji-selector-row[data-v-0065ba23] {
    margin-top: 0.5rem; /* space from the top row */
    max-width: 80vw;
    max-height: 40vh;
    overflow: auto; /* scroll inside instead of overflowing outside */
    background-color: var(--p-surface-0);
    border-radius: 16px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 0.3rem;
}

  /* When popover is flagged to position above, shift the whole overlay above its anchor */
.position-above[data-v-0065ba23] {
    transform: translateY(calc(-200% - 6px)) !important;
}

.chat-window-container[data-v-f931db4d] {
    height: 100%;
    width: 100%;
    flex: 1;
    min-height: 0; /* Important for flex child scrolling */
    position: relative;
}
.messages-container[data-v-f931db4d] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* background-color moved to container style or handled via transparent if wallpaper */
    background-color: var(--p-surface-50, #f8f9fa);

    /* Initial scroll position at the bottom */
    scrollbar-gutter: stable;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}

  /* Keep rows mounted for virtual scroll math, but fade them in after opening scroll completes. */
.messages-container[data-v-f931db4d] .chat-row {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
.messages-container.opening-scroll-pending[data-v-f931db4d] .chat-row {
    opacity: 0;
}

  /* Animate only newly inserted chat bubbles. */
.message-with-avatar.new-chat-message[data-v-f931db4d] {
    animation: new-chat-bubble-enter-f931db4d 220ms ease-out;
}
@keyframes new-chat-bubble-enter-f931db4d {
from {
      opacity: 0;
      transform: translateY(20px) scale(0.985);
}
to {
      opacity: 1;
      transform: translateY(0) scale(1);
}
}
.messages-container.has-wallpaper[data-v-f931db4d] {
    background-color: transparent;
}
.loading-indicator-inline[data-v-f931db4d] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--p-surface-900);
    z-index: 10;
}
.loading-indicator-inline i[data-v-f931db4d] {
    margin-right: 0.5rem;
}
.initial-loading-overlay[data-v-f931db4d] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.initial-loading-pill[data-v-f931db4d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--p-surface-0);
    border: 1px solid var(--p-surface-200);
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--p-primary-500);
    font-weight: 600;
    font-size: 0.9rem;
    animation: fade-in-f931db4d 0.2s ease-out;
}
@keyframes fade-in-f931db4d {
from {
      opacity: 0;
}
to {
      opacity: 1;
}
}
.parent-only-chat-notification[data-v-f931db4d] {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: max-content;
    max-width: 90%;
    z-index: 12;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    background-color: var(--p-surface-0);
    border: 1px solid var(--p-surface-200);
    color: var(--p-surface-900);
    white-space: nowrap;
    opacity: 1;
    transition:
      opacity 0.2s ease-in-out,
      transform 0.2s ease-in-out;
}
.parent-only-chat-notification.hidden[data-v-f931db4d] {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    pointer-events: none;
}
.close-parent-only-chat-notification-icon[data-v-f931db4d] {
    cursor: pointer;
    font-size: 0.875rem;
}
.close-parent-only-chat-notification-icon[data-v-f931db4d]:hover {
    color: var(--p-surface-900);
}
.new-message-notification[data-v-f931db4d] {
    position: absolute;
    bottom: 0px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 300px;
    max-width: 80%;
    z-index: 1;
    color: var(--p-surface-500);
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    background-color: var(--p-surface-0);
    color: var(--p-surface-900);
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.new-message-notification[data-v-f931db4d]:hover {
    opacity: 1;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}
.new-message-notification.hidden[data-v-f931db4d] {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: translateX(-50%) translateY(-100%);
    pointer-events: none;
}
.new-message-notification-icon[data-v-f931db4d] {
    cursor: pointer;
    font-size: 0.875rem;
    transition: transform 0.2s ease-in-out;
}
.new-message-notification-icon[data-v-f931db4d]:hover {
    color: var(--p-primary-500);
    transform: translateY(2px);
}

  /* Highlighted message animation */
.highlight-message[data-v-f931db4d] {
    animation: highlight-pulse-f931db4d 2s ease-in-out;
}
@keyframes highlight-pulse-f931db4d {
0% {
      box-shadow: 0 0 0 0 rgba(var(--p-primary-500), 0.7);
}
50% {
      box-shadow: 0 0 0 10px rgba(var(--p-primary-500), 0);
      background-color: rgba(var(--p-primary-100), 0.7);
}
100% {
      box-shadow: 0 0 0 0 rgba(var(--p-primary-500), 0);
}
}

  /* Date separator styles (make them normal inline rows; sticky is handled by overlay) */
.date-separator[data-v-f931db4d] {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;

    /* remove sticky (virtual + sticky doesn't mix well) */
    position: relative;
    top: auto;
    z-index: 1;
}
.date-pill[data-v-f931db4d] {
    color: var(--p-surface-900);
    background-color: var(--p-surface-0);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--p-surface-200);
    white-space: nowrap;
    opacity: 1;
    min-width: 100px;
    max-width: 100px;
    text-align: center;
}
.scroll-loading-pill[data-v-f931db4d] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    pointer-events: none;
    color: var(--p-surface-900);
    background-color: var(--p-surface-0);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--p-surface-200);
    white-space: nowrap;
    opacity: 1;
}
.scroll-loading-pill.top[data-v-f931db4d] {
    top: 10px;
}
.scroll-loading-pill.bottom[data-v-f931db4d] {
    bottom: 56px;
}

  /* Sticky date overlay (center-top, stable) */
.sticky-date-overlay[data-v-f931db4d] {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    pointer-events: none;
}
.sticky-date-overlay .date-pill[data-v-f931db4d] {
    opacity: 0.92;
}

  /* Extra bottom padding when reply preview is visible - REDUNDANT with bottomGutterPx */
  /* .messages-container.has-reply {
    padding-bottom: 7rem;
  } */
.reply-preview[data-v-f931db4d] {
    position: absolute;
    bottom: 0%;
    width: 90%;
    max-width: 600px;
    z-index: 5;
    /* appear up from the bottom animate */
    animation: appear-from-bottom-f931db4d 0.2s ease-in-out;
}
@keyframes appear-from-bottom-f931db4d {
from {
      transform: translateY(100%);
      opacity: 0;
}
to {
      transform: translateY(0);
      opacity: 1;
}
}
.invite-friends-empty[data-v-f931db4d] {
    display: flex;
    justify-content: center;
    padding: 0.6rem 1rem;
    margin: 0.5rem 0.75rem 0.25rem 1.75rem;
    width: 100%;
}
.typing-notification-overlay[data-v-f931db4d] {
    position: absolute;
    bottom: 8px;
    left: 16px;
    z-index: 10;
    transition: bottom 0.25s ease-in-out;
}
.typing-notification-overlay.has-reply[data-v-f931db4d] {
    bottom: 118px; /* 110px (reply preview height) + 8px */
}

.avatar-overlay-fade-enter-active[data-v-4a8a6340],
  .avatar-overlay-fade-leave-active[data-v-4a8a6340] {
    transition: opacity 200ms ease;
}
.avatar-overlay-fade-enter-from[data-v-4a8a6340],
  .avatar-overlay-fade-leave-to[data-v-4a8a6340] {
    opacity: 0;
}
.avatar-overlay-fade-enter-to[data-v-4a8a6340],
  .avatar-overlay-fade-leave-from[data-v-4a8a6340] {
    opacity: 1;
}
.avatar-overlay-backdrop[data-v-4a8a6340] {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.avatar-overlay-content[data-v-4a8a6340] {
    position: relative;
    width: min(90vw, 42rem);
    min-height: min(70vh, 42rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-overlay-image[data-v-4a8a6340] {
    width: min(80vw, 80vh, 36rem);
    height: min(80vw, 80vh, 36rem);
    object-fit: cover;
    border-radius: 9999px;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
}
.avatar-overlay-image--editable[data-v-4a8a6340],
  .avatar-overlay-fallback--editable[data-v-4a8a6340] {
    cursor: pointer;
}
.avatar-overlay-fallback[data-v-4a8a6340] {
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-overlay-actions[data-v-4a8a6340] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-pane-dialog-content[data-v-1dafdb52] {
    height: 100%;
    overflow-y: auto;
    padding: 0;
}
.user-pane[data-v-c9a65f52] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  background: var(--p-surface-0) !important;
  border-radius: 0.75rem;
  border: 1px solid var(--p-surface-200);
}
.user-pane__hero[data-v-c9a65f52] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--p-surface-50) 0%, var(--p-surface-100) 100%) !important;
  color: var(--p-surface-900) !important;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
.user-pane__hero[data-v-c9a65f52]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p-primary-300), var(--p-primary-500), var(--p-primary-300));
}
.user-pane__avatar-container[data-v-c9a65f52] {
  position: relative;
}
.user-pane__avatar[data-v-c9a65f52] {
  width: 200px;
  height: 200px;
  border: 3px solid var(--p-surface-0) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.user-pane__online-indicator[data-v-c9a65f52] {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--p-surface-0) !important;
  background: var(--p-red-500);
  transition: background-color 0.2s ease;
}
.user-pane__online-indicator--active[data-v-c9a65f52] {
  background: var(--p-green-500);
}
.user-pane__hero-info[data-v-c9a65f52] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.user-pane__handle[data-v-c9a65f52] {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--p-surface-900) !important;
  margin: 0;
  line-height: 1.2;
}
.user-pane__full-name[data-v-c9a65f52] {
  font-size: 1rem;
  color: var(--p-surface-600) !important;
  font-weight: 500;
}
.user-pane__status-badge[data-v-c9a65f52] {
  margin-top: 0.5rem;
}
.user-pane__status-text[data-v-c9a65f52] {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--p-red-100) !important;
  color: var(--p-red-700) !important;
  transition: all 0.2s ease;
}
.user-pane__status-text--online[data-v-c9a65f52] {
  background: var(--p-green-100) !important;
  color: var(--p-green-700) !important;
}
.user-pane__details[data-v-c9a65f52] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.user-pane__detail-item[data-v-c9a65f52] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--p-surface-50) !important;
  border-radius: 0.5rem;
  border-left: 3px solid var(--p-surface-300) !important;
  transition: all 0.2s ease;
}
.user-pane__detail-item[data-v-c9a65f52]:hover {
  background: var(--p-surface-100) !important;
  border-left-color: var(--p-primary-400) !important;
  transform: translateX(2px);
}
.user-pane__detail-icon[data-v-c9a65f52] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--p-primary-100) !important;
  color: var(--p-primary-600) !important;
  border-radius: 0.4rem;
  flex-shrink: 0;
}
.user-pane__detail-icon i[data-v-c9a65f52] {
  font-size: 0.875rem;
}
.user-pane__detail-content[data-v-c9a65f52] {
  flex: 1;
  min-width: 0;
}
.user-pane__detail-label[data-v-c9a65f52] {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--p-surface-500) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}
.user-pane__detail-value[data-v-c9a65f52] {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--p-surface-800) !important;
  word-break: break-word;
}
.user-pane__footer[data-v-c9a65f52] {
  margin-top: 0.5rem;
}
.action-buttons[data-v-93fbdbdb] {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
}


.svg-icon[data-v-dfb28c96] {
    width: 22px;
    height: 22px;
}

.chat-avatar-button {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-chat-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.user-chat-action-icon {
    font-size: 2rem;
    color: var(--p-primary-500);
    padding: 1.25rem;
    border-radius: 10rem;
}
.user-chat-action-icon:hover {
    background-color: var(--p-primary-50);
    color: var(--p-primary-600);
    cursor: pointer;
}
.locked-icon {
    font-size: 2rem;
    color: var(--p-danger-900);
}
.chat-window-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%) blur(10px);
}
.chat-window-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: var(--p-danger-50);
    z-index: 1000;
    border: 1px solid var(--p-surface-0);
    display: grid;
    place-items: center;
    pointer-events: all;
}
.chat-window-disabled-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--p-danger-900);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.member-status-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: var(--p-surface-500);
    cursor: pointer;
    user-select: none;
    /* scroll in from top */
    animation: scrollInFromTop 0.3s ease-in-out;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@keyframes scrollInFromTop {
from {
      transform: translateY(-100%);
      opacity: 0;
}
to {
      transform: translateY(0);
      opacity: 1;
}
}
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.chat-header-container {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}
.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.chat-name-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}
.chat-name-text {
    font-size: 1.1rem;
    line-height: 1.75rem;
    font-weight: 200;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden; /* Prevent container from scrolling */
}
.message-limit-banner {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid transparent;
    margin-right: 0.5rem;
    gap: 0.5rem;
}
.limit-info {
    background-color: var(--p-primary-50);
    color: var(--p-primary-700);
    border-color: var(--p-primary-300);
}
.limit-warning {
    background-color: var(--p-warning-50);
    color: var(--p-warning-700);
    border-color: var(--p-warning-300);
}
.limit-error {
    background-color: var(--p-danger-50);
    color: var(--p-danger-700);
    border-color: var(--p-danger-300);
}

  /* Chat Window Transition */
.fade-enter-active,
  .fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from,
  .fade-leave-to {
    opacity: 0;
}
.fade-enter-to,
  .fade-leave-from {
    opacity: 1;
}
.userchat-debug-pre {
    margin: 0;
    padding: 1rem;
    background-color: var(--p-surface-50);
    border: 1px solid var(--p-surface-200);
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 60vh;
    overflow: auto;
    color: var(--p-surface-900);
}

.walkthrough-help-button[data-v-e5beddbc] {
    min-width: 40px !important;
}
.walkthrough-help-attention[data-v-e5beddbc] {
    animation: walkthrough-throb-e5beddbc 1.2s ease-in-out infinite;
}
@keyframes walkthrough-throb-e5beddbc {
0% {
      transform: scale(1);
}
50% {
      transform: scale(1.05);
}
100% {
      transform: scale(1);
}
}

.features-divider-text[data-v-fbfcf222] {
    font-size: 0.9rem;
    color: var(--p-primary-0);
    font-weight: 600;
    text-align: center;
    background-color: var(--p-brand-500) !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
.text-color-secondary[data-v-fbfcf222] {
    color: var(--p-primary-0);
}
.features-list[data-v-fbfcf222] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.feature-item[data-v-fbfcf222] {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    color: var(--p-primary-0);
}
.feature-icon[data-v-fbfcf222] {
    font-size: 1.35rem;
    color: var(--p-primary-100);
    margin-right: 0.5rem;
}
.feature-text[data-v-fbfcf222] {
    font-size: 0.9rem;
    color: var(--p-primary-50);
}
.feature-icon-svg[data-v-fbfcf222] {
    width: 24px;
    height: 24px;
    fill: var(--p-primary-100);
}
.welcome-footer[data-v-fbfcf222] {
    display: grid;
    grid-template-columns: 1fr 85px 175px 1fr;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.reminders-list[data-v-fbfcf222] {
    list-style: disc;
    padding-left: 1.25rem;
}
.reminder-item[data-v-fbfcf222] {
    margin-bottom: 0.35rem;
    color: var(--p-primary-50);
    font-size: 0.95rem;
    line-height: 1.2rem;
}
.link[data-v-fbfcf222] {
    color: var(--p-primary-100);
    text-decoration: underline;
}
.stay-notified-icon-svg[data-v-fbfcf222] {
    width: 40px;
    height: 40px;
    fill: var(--p-primary-100);
}

  /* Installation Guide Dialog Overlay (reused from InstallAsPWA) */
.dialog-overlay[data-v-fbfcf222] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.instruction-dialog[data-v-fbfcf222] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    min-width: 280px;
    position: relative;
    color: var(--p-surface-900);
}
.dialog-content[data-v-fbfcf222] {
    padding: 1.5rem;
}
.dialog-header[data-v-fbfcf222] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.dialog-header h3[data-v-fbfcf222] {
    margin: 0;
    font-size: 1.1rem;
    color: var(--p-primary-900);
    font-weight: 600;
}
.close-button[data-v-fbfcf222] {
    color: var(--p-surface-500);
}
.step-list[data-v-fbfcf222] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.step-item[data-v-fbfcf222] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.step-number[data-v-fbfcf222] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--p-brand-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.step-text[data-v-fbfcf222] {
    margin: 0;
    color: var(--p-surface-800);
    line-height: 1.4;
    font-size: 0.9rem;
}
.alternative-note[data-v-fbfcf222] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--p-orange-50);
    border: 1px solid var(--p-orange-200);
    border-radius: 6px;
}
.alternative-note i[data-v-fbfcf222] {
    color: var(--p-orange-500);
    margin-top: 0.2rem;
}
.alternative-note p[data-v-fbfcf222] {
    margin: 0;
    color: var(--p-orange-700);
    font-size: 0.85rem;
    line-height: 1.4;
}
.guide-arrow[data-v-fbfcf222] {
    position: absolute;
    color: var(--p-primary-500);
    font-size: 1.5rem;
    animation: bounce-fbfcf222 2s infinite;
    z-index: 1001;
}
.arrow-up[data-v-fbfcf222] {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.arrow-down[data-v-fbfcf222] {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.arrow-left[data-v-fbfcf222] {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.arrow-right[data-v-fbfcf222] {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
@keyframes bounce-fbfcf222 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
}
40% {
      transform: translateY(-8px);
}
60% {
      transform: translateY(-4px);
}
}
@keyframes bounceLeft-fbfcf222 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
}
40% {
      transform: translateX(-8px);
}
60% {
      transform: translateX(-4px);
}
}
@keyframes bounceRight-fbfcf222 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
}
40% {
      transform: translateX(8px);
}
60% {
      transform: translateX(4px);
}
}
.arrow-left[data-v-fbfcf222] {
    animation: bounceLeft-fbfcf222 2s infinite;
}
.arrow-right[data-v-fbfcf222] {
    animation: bounceRight-fbfcf222 2s infinite;
}

.features-divider-text[data-v-4a6dd166] {
    font-size: 0.9rem;
    color: var(--p-primary-0) !important;
    font-weight: 600;
    text-align: center;
    background-color: var(--p-brand-500) !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
.text-color-secondary[data-v-4a6dd166] {
    color: var(--p-surface-0);
}
.features-list[data-v-4a6dd166] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.feature-item[data-v-4a6dd166] {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    color: var(--p-surface-0);
}
.feature-icon[data-v-4a6dd166] {
    font-size: 1.35rem;
    color: var(--p-primary-100);
    margin-right: 0.5rem;
}
.feature-text[data-v-4a6dd166] {
    font-size: 0.9rem;
    color: var(--p-surface-50);
}
.feature-icon-svg[data-v-4a6dd166] {
    width: 24px;
    height: 24px;
    fill: var(--p-primary-100);
}
.welcome-footer[data-v-4a6dd166] {
    display: grid;
    grid-template-columns: 1fr 85px 175px 1fr;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.reminders-list[data-v-4a6dd166] {
    list-style: disc;
    padding-left: 1.25rem;
}
.reminder-item[data-v-4a6dd166] {
    margin-bottom: 0.35rem;
    color: var(--p-primary-0);
    font-size: 0.95rem;
    line-height: 1.2rem;
}
.link[data-v-4a6dd166] {
    color: var(--p-primary-100);
    text-decoration: underline;
}
.sr-loading[data-v-4a6dd166] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 0 0.5rem 0;
}
.loading-text[data-v-4a6dd166] {
    font-size: 14px;
    font-weight: 400;
    color: var(--p-text-color);
    margin-top: 0.75rem;
    opacity: 0.9;
}

  /* Loader */
.loader[data-v-4a6dd166] {
    width: 0;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: currentColor;
    color: var(--p-text-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    animation: animFw-4a6dd166 8s linear infinite;
}
.loader[data-v-4a6dd166]::after,
  .loader[data-v-4a6dd166]::before {
    content: '';
    width: 10px;
    height: 1px;
    background: currentColor;
    position: absolute;
    top: 9px;
    right: -2px;
    opacity: 0;
    transform: rotate(-45deg) translateX(0px);
    box-sizing: border-box;
    animation: coli1-4a6dd166 0.3s linear infinite;
}
.loader[data-v-4a6dd166]::before {
    top: -4px;
    transform: rotate(45deg);
    animation: coli2-4a6dd166 0.3s linear infinite;
}
@keyframes animFw-4a6dd166 {
0% {
      width: 0;
      opacity: 0.7;
}
100% {
      width: 100%;
      opacity: 1;
}
}
@keyframes coli1-4a6dd166 {
0% {
      transform: rotate(-45deg) translateX(0px);
      opacity: 0.7;
}
100% {
      transform: rotate(-45deg) translateX(-45px);
      opacity: 0;
}
}
@keyframes coli2-4a6dd166 {
0% {
      transform: rotate(45deg) translateX(0px);
      opacity: 1;
}
100% {
      transform: rotate(45deg) translateX(-45px);
      opacity: 0.7;
}
}
.stay-notified-icon-svg[data-v-4a6dd166] {
    width: 40px;
    height: 40px;
    fill: var(--p-primary-100);
}

  /* Installation Guide Dialog Overlay (reused from InstallAsPWA) */
.dialog-overlay[data-v-4a6dd166] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.instruction-dialog[data-v-4a6dd166] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    min-width: 280px;
    position: relative;
    color: var(--p-surface-900);
}
.dialog-content[data-v-4a6dd166] {
    padding: 1.5rem;
}
.dialog-header[data-v-4a6dd166] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.dialog-header h3[data-v-4a6dd166] {
    margin: 0;
    font-size: 1.1rem;
    color: var(--p-primary-900);
    font-weight: 600;
}
.close-button[data-v-4a6dd166] {
    color: var(--p-surface-500);
}
.step-list[data-v-4a6dd166] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.step-item[data-v-4a6dd166] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.step-number[data-v-4a6dd166] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--p-brand-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.step-text[data-v-4a6dd166] {
    margin: 0;
    color: var(--p-surface-800);
    line-height: 1.4;
    font-size: 0.9rem;
}
.alternative-note[data-v-4a6dd166] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--p-orange-50);
    border: 1px solid var(--p-orange-200);
    border-radius: 6px;
}
.alternative-note i[data-v-4a6dd166] {
    color: var(--p-orange-500);
    margin-top: 0.2rem;
}
.alternative-note p[data-v-4a6dd166] {
    margin: 0;
    color: var(--p-orange-700);
    font-size: 0.85rem;
    line-height: 1.4;
}
.guide-arrow[data-v-4a6dd166] {
    position: absolute;
    color: var(--p-primary-500);
    font-size: 1.5rem;
    animation: bounce-4a6dd166 2s infinite;
    z-index: 1001;
}
.arrow-up[data-v-4a6dd166] {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.arrow-down[data-v-4a6dd166] {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.arrow-left[data-v-4a6dd166] {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.arrow-right[data-v-4a6dd166] {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
@keyframes bounce-4a6dd166 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
}
40% {
      transform: translateY(-8px);
}
60% {
      transform: translateY(-4px);
}
}
@keyframes bounceLeft-4a6dd166 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
}
40% {
      transform: translateX(-8px);
}
60% {
      transform: translateX(-4px);
}
}
@keyframes bounceRight-4a6dd166 {
0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
}
40% {
      transform: translateX(8px);
}
60% {
      transform: translateX(4px);
}
}
.arrow-left[data-v-4a6dd166] {
    animation: bounceLeft-4a6dd166 2s infinite;
}
.arrow-right[data-v-4a6dd166] {
    animation: bounceRight-4a6dd166 2s infinite;
}
.rewards-images-row[data-v-4a6dd166] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5rem;
}
.customise-image-row[data-v-4a6dd166] {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.customise-image[data-v-4a6dd166] {
    width: 100%;
    max-height: 130px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.rewards-image-container[data-v-4a6dd166] {
    flex: 1;
    max-width: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.rewards-image-container[data-v-4a6dd166]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.rewards-image[data-v-4a6dd166] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
@media (max-width: 768px) {
.rewards-images-row[data-v-4a6dd166] {
      gap: 0.5rem;
}
.rewards-image-container[data-v-4a6dd166] {
      max-width: none;
}
}
.app-icon-container[data-v-4a6dd166] {
    width: 100px;
    height: 100px;
    position: relative;
    margin-left: -0.5rem;
}
.app-icon-image[data-v-4a6dd166] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Alpha mask to fade edges on all four sides */
    mask-image: radial-gradient(
      circle,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0) 65%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: radial-gradient(
      circle,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0) 65%,
      rgba(0, 0, 0, 0) 100%
    );
}
.username-section[data-v-4a6dd166] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0.5rem;
}
.username-display[data-v-4a6dd166] {
    font-size: 0.9rem;
    color: var(--p-surface-0);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.username-display[data-v-4a6dd166]:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--p-surface-0);
}
.username-label[data-v-4a6dd166] {
    font-size: 0.9rem;
    color: var(--p-surface-0);
    font-weight: 600;
}
.username-clipboard-icon[data-v-4a6dd166] {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.username-display:hover .username-clipboard-icon[data-v-4a6dd166] {
    opacity: 1;
}
.install-as-app-main[data-v-4a6dd166] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0rem 0.25rem;
    margin-top: 0rem;
}
.install-app-footer[data-v-4a6dd166] {
    display: grid;
    grid-template-columns: 1fr 130px 130px 1fr;
    gap: 1rem;
    grid-column: span 4;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.install-as-app-login-instructions[data-v-4a6dd166] {
    padding: 0rem 1rem;
}
.avatar-preview-container[data-v-4a6dd166] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.generated-avatar-large[data-v-4a6dd166] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--p-primary-100);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chats-outer-container[data-v-edb72ca9] {
    position: relative;
    height: 100%;
    width: 100%;
}
.chats-container[data-v-edb72ca9] {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--p-surface-0);
    position: relative;
}
.locked-icon[data-v-edb72ca9] {
    font-size: 2rem;
    color: var(--p-danger-900);
}
.chat-list-disabled[data-v-edb72ca9] {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%) blur(10px);
}
.chat-list-disabled-overlay[data-v-edb72ca9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: var(--p-danger-50);
    z-index: 1000;
    border: 1px solid var(--p-surface-0);
    display: grid;
    place-items: center;
    pointer-events: all;
}
.chat-list-disabled-overlay-content[data-v-edb72ca9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--p-danger-900);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

  /* Transition for desktop detail view */
.fade-in-enter-active[data-v-edb72ca9],
  .fade-in-leave-active[data-v-edb72ca9] {
    transition: opacity 0.15s ease-in-out;
}
.fade-in-enter-from[data-v-edb72ca9],
  .fade-in-leave-to[data-v-edb72ca9] {
    opacity: 0;
}
.indexing-status-button[data-v-edb72ca9] {
    margin-right: 0.5rem;
}
.indexing-status-button-pulsing[data-v-edb72ca9] {
    animation: indexing-pulse-edb72ca9 1.2s ease-in-out infinite;
}
@keyframes indexing-pulse-edb72ca9 {
0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45);
}
70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 8px rgba(20, 184, 166, 0);
}
100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
}
}

.status-bar-spacer[data-v-d3513fee] {
    height: 55px;
    background-color: var(--p-primary-500);
    width: 100%;
    flex-shrink: 0;
}

.app-wrapper {
    height: 100%;
    width: 100%;
    background-color: var(--p-primary-500);
}
.notivue-container {
    z-index: 1000000000 !important;
}
.notivue-container-ios-spacer {
    top: 55px !important;
}

  /* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#app {
    height: 100% !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
}
.app-container {
    height: 100%;
    width: 100%;
}
.app-container.effective-user-transition-out {
    opacity: 0;
    transform: translateX(30px);
    transition:
      opacity 700ms ease,
      transform 700ms ease;
}
.app-container.effective-user-transition-in {
    opacity: 0;
    transform: translateX(-20px);
    animation: effective-user-switch-in 700ms ease forwards;
}
@keyframes effective-user-switch-in {
from {
      opacity: 0;
      transform: translateX(-30px);
}
to {
      opacity: 1;
      transform: translateX(0);
}
}
.app-container.has-spacer {
    height: calc(100% - 55px) !important;
}

  /* Router transition styles */

  /* Slide left transition */
.slide-left-enter-active,
  .slide-left-leave-active {
    transition: all 0.3s ease-in-out;
}
.slide-left-enter-from {
    opacity: 0;
    transform: translateX(-100%);
}
.slide-left-leave-to {
    opacity: 0;
    transform: translateX(100%);
}
.slide-left-enter-to,
  .slide-left-leave-from {
    opacity: 1;
    transform: translateX(0);
}

  /* Slide right transition */
.slide-right-enter-active,
  .slide-right-leave-active {
    transition: all 0.3s ease-in-out;
}
.slide-right-enter-from {
    opacity: 0;
    transform: translateX(100%);
}
.slide-right-enter-to,
  .slide-right-leave-from {
    opacity: 1;
    transform: translateX(0);
}
.slide-right-leave-to {
    opacity: 0;
    transform: translateX(-100%);
}

  /* Quick fade transition */
.quick-fade-enter-active,
  .quick-fade-leave-active {
    transition: opacity 0.3s ease-in-out;
}
.quick-fade-enter-from,
  .quick-fade-leave-to {
    opacity: 0;
}
.quick-fade-enter-to,
  .quick-fade-leave-from {
    opacity: 1;
}

  /* ConfirmDialog Styles */
.p-confirmdialog {
    background-color: var(--p-surface-0) !important;
    color: var(--p-surface-900) !important;
    border: 1px solid var(--p-surface-300) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1) !important;
}
.p-confirmdialog-icon {
    color: var(--p-primary-500) !important;
}

.maintenance-gate-container[data-v-5931f743] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 20;
}
.maintenance-gate-card[data-v-5931f743] {
    width: min(92vw, 460px);
    background: rgba(255, 255, 255, 0.94);
    color: var(--p-surface-900);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--p-surface-300);
}
.maintenance-title[data-v-5931f743] {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.maintenance-message[data-v-5931f743] {
    font-size: 0.95rem;
    line-height: 1.4;
}
.maintenance-dev-form[data-v-5931f743] {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
}
.maintenance-input[data-v-5931f743] {
    width: 100%;
    border: 1px solid var(--p-surface-400);
    border-radius: 0.5rem;
    padding: 0.6rem 0.7rem;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.maintenance-button[data-v-5931f743] {
    border: none;
    border-radius: 0.5rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
    cursor: pointer;
    font-weight: 600;
}
.maintenance-button-primary[data-v-5931f743] {
    background: var(--p-primary-600);
    color: white;
}
.maintenance-button-secondary[data-v-5931f743] {
    background: var(--p-surface-200);
    color: var(--p-surface-900);
}
.maintenance-error[data-v-5931f743] {
    color: #b00020;
    margin-top: 0.5rem;
}

.fullsync-bar-container[data-v-e82ac7ce] {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
.loading-bar-container[data-v-e82ac7ce] {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
.loading-bar-root[data-v-e82ac7ce] {
    background-color: var(--p-brand-500) !important;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    height: 30px;
}
.loading-text[data-v-e82ac7ce] {
    font-size: 14px;
    color: white;
    padding-top: 10px;
    width: 100%;
    text-align: center;
}
.fullsync-text[data-v-e82ac7ce] {
    font-size: 14px;
    color: white;
    padding-top: 10px;
    width: 100%;
    text-align: center;
}
.tag-line[data-v-e82ac7ce] {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    text-align: center;

    perspective: 800px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 54px;
}
.tag-line-text[data-v-e82ac7ce] {
    font-size: 1.2rem;
    color: white;
    display: block;
    width: 150px;
}
  /* Parent container */
.tag-line-wrapper[data-v-e82ac7ce] {
    perspective: 800px;
    -webkit-perspective: 800px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.tag-line-text-2[data-v-e82ac7ce] {
    font-size: 1rem;
    color: #054b52;
    display: block;
    transform-origin: top center;
    -webkit-transform-origin: top center;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    transform: rotateX(-180deg);
    -webkit-transform: rotateX(-180deg);

    will-change: transform;
    animation: flipDown-e82ac7ce 0.6s ease-out 0s forwards;
    -webkit-animation: flipDown-e82ac7ce 0.6s ease-out 0s forwards;

    background-color: #ffffff;
    width: 150px;
    border-radius: 5px;
    opacity: 0.9;
}

  /* Standard keyframes */
@keyframes flipDown-e82ac7ce {
0% {
      transform: rotateX(-180deg);
}
100% {
      transform: rotateX(0deg);
}
}

  /* WebKit-prefixed keyframes for iOS */
@-webkit-keyframes flipDown-e82ac7ce {
0% {
      -webkit-transform: rotateX(-180deg);
}
100% {
      -webkit-transform: rotateX(0deg);
}
}
.loading-screen[data-v-e82ac7ce] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--p-brand-500);
    text-align: center;
    position: relative;
    padding: 0px;
    margin: 0px;
}
.logo-grid-container[data-v-e82ac7ce] {
    /* centered on the screen */
    position: absolute;
    --screen-width: 100vw;
    --screen-height: 100vh;
    --smaller-screen-dimension: min(
      400px,
      min(var(--screen-width), var(--screen-height))
    );
    --scale-factor: 0.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--smaller-screen-dimension) * var(--scale-factor));
    height: calc(var(--smaller-screen-dimension) * var(--scale-factor));
}
.logo-grid[data-v-e82ac7ce] {
    display: grid;

    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn-e82ac7ce 2s;
}
.logo[data-v-e82ac7ce] {
    width: 100%;
    height: 100%;

    grid-column: 1 / span 7;
    grid-row: 1 / span 7;

    object-fit: contain;
}
.dot[data-v-e82ac7ce] {
    /* screen width as a variable */
    --screen-width: 100vw;
    --screen-height: 100vh;
    --smaller-screen-dimension: min(
      400px,
      min(var(--screen-width), var(--screen-height))
    );
    --scale-factor: 0.5;
    --offset-factor: 12;

    max-height: calc(var(--smaller-screen-dimension) * var(--scale-factor));
    max-width: calc(var(--smaller-screen-dimension) * var(--scale-factor));

    /* font size scales with the width of the logo */
    font-size: calc(
      var(--smaller-screen-dimension) * var(--scale-factor) / 2
    ) !important;
    font-family: 'Courier New', Courier, monospace;
    color: #000000;
    width: calc(var(--smaller-screen-dimension) * var(--scale-factor) / 7);

    text-align: center;
    transform: translateY(
        calc(-2.5 * var(--smaller-screen-dimension) * var(--scale-factor) / 20)
      )
      translateX(
        calc(
          -1 * var(--smaller-screen-dimension) * var(--scale-factor) /
            var(--offset-factor)
        )
      );

    z-index: 1000;
    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.2),
      0 2px 0 rgba(0, 0, 0, 0.2),
      0 3px 0 rgba(0, 0, 0, 0.2),
      0 4px 0 rgba(0, 0, 0, 0.2),
      0 5px 0 rgba(0, 0, 0, 0.2),
      0 15px 10px rgba(0, 0, 0, 0.2);
    animation: bounce-e82ac7ce 0.6s ease infinite alternate;
    grid-column: 3 / span 1;
    grid-row: 4 / span 1;
}
.dot[data-v-e82ac7ce]:nth-child(2) {
    animation-delay: 0.2s;
    grid-column: 4 / span 1;
    grid-row: 4 / span 1;
}
.dot[data-v-e82ac7ce]:nth-child(3) {
    animation-delay: 0.4s;
    grid-column: 5 / span 1;
    grid-row: 4 / span 1;
}
@keyframes bounce-e82ac7ce {
to {
      transform: translateY(
          calc(
            -3.5 * var(--smaller-screen-dimension) * var(--scale-factor) / 20
          )
        )
        translateX(
          calc(
            -1 * var(--smaller-screen-dimension) * var(--scale-factor) /
              var(--offset-factor)
          )
        );
      text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(0, 0, 0, 0.2),
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 5px 0 rgba(0, 0, 0, 0.2),
        0 25px 15px rgba(0, 0, 0, 0.2);
}
}
@keyframes fadeIn-e82ac7ce {
0% {
      opacity: 0;
}
100% {
      opacity: 1;
}
}


.blue-screen-container[data-v-14cfd0e5] {
    background-color: var(--p-brand-500);
}
.repair-icon[data-v-14cfd0e5] {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    fill: currentColor;
}
.link-text[data-v-14cfd0e5] {
    color: var(--p-primary-800);
    font-weight: 600;
}

.connection-required-screen[data-v-da0b641d] {
    background:
      radial-gradient(circle at 20% 20%, var(--p-primary-200), transparent 45%),
      radial-gradient(circle at 80% 80%, var(--p-primary-300), transparent 45%),
      linear-gradient(180deg, var(--p-primary-50), var(--p-primary-100));
}
.connection-required-card[data-v-da0b641d] {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    color: var(--p-primary-900);
}
.icon-wrap[data-v-da0b641d] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--p-primary-100);
    color: var(--p-primary-700);
}
[data-notivue=success],[data-notivue=promise-resolve]{--nv-bg: var(--nv-success-bg);--nv-fg: var(--nv-success-fg);--nv-accent: var(--nv-success-accent, var(--nv-global-accent));--nv-border: var(--nv-success-border)}[data-notivue=error],[data-notivue=promise-reject]{--nv-bg: var(--nv-error-bg);--nv-fg: var(--nv-error-fg);--nv-accent: var(--nv-error-accent, var(--nv-global-accent));--nv-border: var(--nv-error-border)}[data-notivue=warning]{--nv-bg: var(--nv-warning-bg);--nv-fg: var(--nv-warning-fg);--nv-accent: var(--nv-warning-accent, var(--nv-global-accent));--nv-border: var(--nv-warning-border)}[data-notivue=info]{--nv-bg: var(--nv-info-bg);--nv-fg: var(--nv-info-fg);--nv-accent: var(--nv-info-accent, var(--nv-global-accent));--nv-border: var(--nv-info-border)}[data-notivue=promise]{--nv-bg: var(--nv-promise-bg);--nv-fg: var(--nv-promise-fg);--nv-accent: var(--nv-promise-accent, var(--nv-global-accent));--nv-border: var(--nv-promise-border)}.Notivue__notification{--tip-width: calc(var(--tip-width-fx, 1) * var(--nv-tip-width, 0px));box-sizing:border-box;position:relative;width:var(--nv-min-width, auto);max-width:var(--nv-width, 100%);background-color:var(--nv-bg, var(--nv-global-bg));display:flex;align-items:var(--nv-y-align);border-radius:var(--nv-radius, 0);border:var(--nv-border-width, 0) solid var(--nv-border, var(--nv-global-border));box-shadow:var(--nv-shadow, 0 0 rgba(0, 0, 0, 0)),inset var(--tip-width) 0 0 var(--nv-accent)}.Notivue__notification *{box-sizing:border-box;touch-action:manipulation}.Notivue__notification[data-notivue-has-title=true]{align-items:var(--nv-y-align-has-title, var(--nv-y-align))}.Notivue__icon{display:flex;justify-content:center;align-items:center;overflow:visible;min-width:var(--nv-icon-size);width:var(--nv-icon-size);height:var(--nv-icon-size);margin:var(--nv-spacing) 0 var(--nv-spacing) var(--nv-spacing);color:var(--nv-accent)}.Notivue__content{--nv-content-space: calc(var(--nv-spacing) + var(--nv-spacing) * .15);display:flex;flex-direction:column;flex-grow:1;text-align:inherit;padding:var(--nv-content-space)}.Notivue__content-title{line-height:1.15;font-weight:700;color:var(--nv-fg, var(--nv-global-fg));font-size:var(--nv-title-size);margin:0 0 .33em;padding:0}.Notivue__transition-enter-active{--dur-easing: .5s cubic-bezier(.16, 1, .3, 1);transition:opacity var(--dur-easing),transform var(--dur-easing)}@media (prefers-reduced-motion: reduce){.Notivue__transition-enter-active{transition:none}}.Notivue__transition-enter-from{opacity:0;transform:scale(.8)}.Notivue__transition-enter-to{opacity:1;transform:scale(1)}.Notivue__transition-leave-active{transition:opacity 0ms ease}.Notivue__transition-leave-from,.Notivue__transition-leave-to{opacity:0}.Notivue__content-message{max-height:250px;overflow:auto;line-height:1.375;color:var(--nv-fg, var(--nv-global-fg));margin:0;padding:0;font-size:var(--nv-message-size);white-space:pre-line}.Notivue__close{position:relative;cursor:pointer;padding:calc(var(--nv-spacing) / 2);margin:var(--nv-spacing) var(--nv-spacing) var(--nv-spacing) 0;font-weight:700;border:none;background:none;line-height:1;font-size:var(--nv-message-size);color:var(--nv-fg, var(--nv-global-fg));-webkit-tap-highlight-color:rgba(0,0,0,0)}.Notivue__close:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:var(--nv-fg, var(--nv-global-fg));opacity:0;border-radius:calc(var(--nv-radius) / 2);transition:opacity .1s ease-out}@media (hover: hover){.Notivue__close:hover{opacity:1}.Notivue__close:hover:after{opacity:.1}.Notivue__close:hover .Notivue__close-icon{opacity:1}}.Notivue__close-icon{width:var(--nv-icon-size);height:var(--nv-icon-size);display:flex;color:var(--nv-fg, var(--nv-global-fg));pointer-events:none;opacity:.65}.Notivue__spinner{transform-origin:center;animation:Notivue__spinner-kf .75s infinite linear}@keyframes Notivue__spinner-kf{to{transform:rotate(360deg)}}@media (prefers-reduced-motion: reduce){.Notivue__spinner,.Notivue__duplicate{animation:none}}[dir=rtl] .Notivue__notification{--tip-width-fx: -1}[dir=rtl] .Notivue__icon{margin:var(--nv-spacing) var(--nv-spacing) var(--nv-spacing) 0}[dir=rtl] .Notivue__content-message{font-size:calc(var(--nv-message-size) + .1em)}[dir=rtl] .Notivue__content-title{font-size:calc(var(--nv-title-size) + .1em)}[dir=rtl] .Notivue__close{margin:var(--nv-spacing) 0 var(--nv-spacing) var(--nv-spacing)}.Notivue__duplicate{animation:Notivue__duplicate-kf .3s cubic-bezier(.16,1,.3,1) forwards}@keyframes Notivue__duplicate-kf{0%{transform:scale(1);opacity:1}50%{transform:scale(1.035);opacity:.8}to{transform:scale(1);opacity:1}}
[data-notivue-align=top] .Notivue__enter,[data-notivue-align=top] .Notivue__leave{--notivue-ty: -200%}[data-notivue-align=bottom] .Notivue__enter,[data-notivue-align=bottom] .Notivue__leave{--notivue-ty: 200%}.Notivue__enter{animation:Notivue__enter-kf .35s cubic-bezier(.5,1,.25,1)}.Notivue__leave{animation:Notivue__leave-kf .35s ease}.Notivue__clearAll{animation:Notivue__clearAll-kf .5s cubic-bezier(.22,1,.36,1)}@keyframes Notivue__enter-kf{0%{transform:translate3d(0,var(--notivue-ty),0) scale(.25);opacity:0}to{transform:translateZ(0) scale(1);opacity:1}}@keyframes Notivue__leave-kf{0%{transform:translateZ(0) scale(1);opacity:.7}to{transform:translate3d(0,var(--notivue-ty),0) scale(0);opacity:0}}@keyframes Notivue__clearAll-kf{0%{opacity:1}to{opacity:0}}
@media (prefers-reduced-motion: no-preference){.Notivue__notification:has(.Notivue__progress){border-radius:var(--nv-radius, 0) var(--nv-radius, 0) var(--nv-radius, 0) 0}.Notivue__notification:has(.Notivue__progress) .Notivue__content-message{margin-bottom:var(--nv-progress-height, 4px)}.Notivue__progress{position:absolute;bottom:0;left:0;width:100%;height:var(--nv-progress-height, 4px);background-color:var(--nv-accent);animation:Notivue__progress-kf var(--nv-anim-dur) linear forwards;transform-origin:left;border-radius:0 var(--nv-radius, 0) var(--nv-radius, 0) 0}[dir=rtl] .Notivue__progress{transform-origin:right;border-radius:var(--nv-radius, 0) 0 0 var(--nv-radius, 0)}[dir=rtl] .Notivue__notification:has(.Notivue__progress){border-radius:var(--nv-radius, 0) var(--nv-radius, 0) 0 var(--nv-radius, 0)}@keyframes Notivue__progress-kf{0%{transform:scaleX(1)}to{transform:scaleX(0)}}}@media (prefers-reduced-motion: reduce){.Notivue__progress{display:none}}
