/* [project]/apps/DentAI/frontend/src/components/confirm-dialog.module.css [app-client] (css) */
.confirm-dialog-module__m4uzaW__message {
  color: var(--color-text);
  font-size: .9375rem;
  line-height: 1.5;
}

html:is([data-theme="ink"], [data-theme="paper"]) .confirm-dialog-module__m4uzaW__message {
  font-family: var(--font-body);
}

/* [project]/apps/DentAI/frontend/src/components/ui/button.module.css [app-client] (css) */
.button-module__zxu6dG__button {
  cursor: pointer;
  border-radius: var(--radius);
  border: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s;
  display: inline-flex;
}

.button-module__zxu6dG__button:disabled {
  opacity: .5;
  pointer-events: none;
}

.button-module__zxu6dG__primary {
  background: var(--color-primary);
  color: #fff;
}

.button-module__zxu6dG__primary:hover {
  filter: brightness(.88);
}

.button-module__zxu6dG__secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.button-module__zxu6dG__secondary:hover {
  background: var(--color-bg);
}

.button-module__zxu6dG__ghost {
  color: var(--color-text-light);
  background: none;
}

.button-module__zxu6dG__ghost:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

.button-module__zxu6dG__danger {
  background: var(--color-error);
  color: #fff;
}

.button-module__zxu6dG__danger:hover {
  filter: brightness(.9);
}

.button-module__zxu6dG__dangerGhost {
  color: var(--color-error);
  background: none;
}

.button-module__zxu6dG__dangerGhost:hover {
  background: color-mix(in srgb, var(--color-error) 10%, transparent);
  color: var(--color-error);
}

.button-module__zxu6dG__sm {
  padding: .3125rem .75rem;
  font-size: .8125rem;
}

.button-module__zxu6dG__lg {
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__button {
  font-family: var(--font-mono);
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  padding: .5rem 1.5rem;
  font-size: .6875rem;
  font-weight: 400;
  transition: border-color .15s ease-out, color .15s ease-out;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__sm {
  padding: .375rem 1.125rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__primary {
  background: var(--color-text);
  color: var(--color-bg);
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__primary:hover {
  filter: none;
  background: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__secondary {
  border: 1px solid var(--color-border-visible);
  color: var(--color-text);
  background: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__secondary:hover {
  border-color: var(--color-text-disabled);
  color: var(--color-text);
  background: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__ghost {
  color: var(--color-text-light);
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__ghost:hover {
  color: var(--color-text);
  background: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__danger {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__danger:hover {
  filter: none;
  background: var(--color-accent);
  color: var(--color-surface);
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__dangerGhost {
  color: var(--color-accent);
  background: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .button-module__zxu6dG__dangerGhost:hover {
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  color: var(--color-accent);
}

/* [project]/apps/DentAI/frontend/src/components/ui/card.module.css [app-client] (css) */
.card-module__h6QB_G__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card-module__h6QB_G__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.card-module__h6QB_G__title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

.card-module__h6QB_G__description {
  color: var(--color-text-light);
  margin-top: .25rem;
  font-size: .875rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .card-module__h6QB_G__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: none;
  border-radius: 12px;
}

html:is([data-theme="ink"], [data-theme="paper"]) .card-module__h6QB_G__title {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-size: 11px;
  font-weight: 400;
}

/* [project]/apps/DentAI/frontend/src/components/ui/skeleton.module.css [app-client] (css) */
.skeleton-module__nfFdSG__skeleton {
  background: var(--color-border);
  border-radius: var(--radius);
  animation: 1.5s ease-in-out infinite skeleton-module__nfFdSG__pulse;
}

@keyframes skeleton-module__nfFdSG__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

html:is([data-theme="ink"], [data-theme="paper"]) .skeleton-module__nfFdSG__skeleton {
  background: var(--color-surface-raised);
  border-radius: 0;
  animation: none;
  position: relative;
  overflow: hidden;
}

html:is([data-theme="ink"], [data-theme="paper"]) .skeleton-module__nfFdSG__skeleton:after {
  content: "";
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-border-visible) 50%,
    transparent 100%);
  animation: 1.5s linear infinite skeleton-module__nfFdSG__sweep;
  position: absolute;
  inset: 0;
}

@keyframes skeleton-module__nfFdSG__sweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* [project]/apps/DentAI/frontend/src/components/ui/dialog.module.css [app-client] (css) */
.dialog-module__gZg_3q__overlay {
  z-index: 200;
  background: #00000073;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: .15s dialog-module__gZg_3q__overlayShow;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes dialog-module__gZg_3q__overlayShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dialog-module__gZg_3q__content {
  z-index: 201;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) * 2);
  width: var(--dialog-width, min(640px, 92vw));
  flex-direction: column;
  max-height: 92vh;
  animation: .15s dialog-module__gZg_3q__contentShow;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 64px #0000002e;
}

.dialog-module__gZg_3q__content:focus {
  outline: none;
}

@keyframes dialog-module__gZg_3q__contentShow {
  from {
    opacity: 0;
    transform: translate(-50%, -50%)scale(.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }
}

.dialog-module__gZg_3q__header {
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
}

.dialog-module__gZg_3q__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.dialog-module__gZg_3q__description {
  color: var(--color-text-light);
  margin-top: .2rem;
  font-size: .875rem;
}

.dialog-module__gZg_3q__body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.dialog-module__gZg_3q__footer {
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.5rem;
  display: flex;
}

.dialog-module__gZg_3q__close {
  cursor: pointer;
  color: var(--color-text-light);
  border-radius: var(--radius);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  transition: background .15s, color .15s;
  display: flex;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.dialog-module__gZg_3q__close:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__overlay {
  background: #000c;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__content {
  border: 1px solid var(--color-border-visible);
  box-shadow: none;
  border-radius: 16px;
  animation: .2s dialog-module__gZg_3q__contentShow;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__description {
  font-family: var(--font-body);
  color: var(--color-text-light);
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__close {
  border-radius: 0;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dialog-module__gZg_3q__close:hover {
  color: var(--color-text);
  background: none;
}

/* [project]/apps/DentAI/frontend/src/components/ui/dropdown-menu.module.css [app-client] (css) */
.dropdown-menu-module__7TDp4G__content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  z-index: 100;
  flex-direction: column;
  min-width: 180px;
  padding: .25rem;
  animation: .15s dropdown-menu-module__7TDp4G__slideDown;
  display: flex;
  box-shadow: 0 4px 16px #0000001f;
}

@keyframes dropdown-menu-module__7TDp4G__slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu-module__7TDp4G__item {
  border-radius: calc(var(--radius) - 2px);
  color: var(--color-text-light);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: .5rem .75rem;
  font-size: .875rem;
  transition: background .1s, color .1s;
}

.dropdown-menu-module__7TDp4G__item:hover, .dropdown-menu-module__7TDp4G__item[data-highlighted] {
  background: var(--color-bg);
  color: var(--color-text);
}

.dropdown-menu-module__7TDp4G__itemActive {
  background: var(--color-primary);
  color: #fff;
}

.dropdown-menu-module__7TDp4G__separator {
  background: var(--color-border);
  height: 1px;
  margin: .25rem 0;
}

.dropdown-menu-module__7TDp4G__label {
  color: var(--color-text-light);
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__content {
  border-color: var(--color-border-visible);
  box-shadow: none;
  border-radius: 8px;
}

html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__item {
  font-family: var(--font-mono);
  letter-spacing: .04em;
  border-radius: 4px;
  font-size: .75rem;
}

:is(html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__item:hover, html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__item[data-highlighted]) {
  background: var(--color-surface-raised);
}

html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__itemActive {
  background: var(--color-surface-raised);
  color: var(--color-text);
  border-left: 2px solid var(--color-accent);
}

html:is([data-theme="ink"], [data-theme="paper"]) .dropdown-menu-module__7TDp4G__label {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 400;
}

/* [project]/apps/DentAI/frontend/src/components/ui/tabs.module.css [app-client] (css) */
.tabs-module__JNGVta__list {
  flex-shrink: 0;
  gap: 0;
  display: flex;
}

.tabs-module__JNGVta__listUnderline {
  border-bottom: 1px solid var(--color-border);
}

.tabs-module__JNGVta__triggerUnderline {
  cursor: pointer;
  color: var(--color-text-light);
  opacity: .7;
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  padding: .5rem .875rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: color .15s, border-color .15s;
}

.tabs-module__JNGVta__triggerUnderline:hover {
  opacity: .8;
}

.tabs-module__JNGVta__triggerUnderline[data-state="active"] {
  opacity: 1;
  border-bottom-color: var(--color-primary);
  color: var(--color-primary);
}

.tabs-module__JNGVta__listPill {
  gap: .25rem;
}

.tabs-module__JNGVta__triggerPill {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  cursor: pointer;
  background: none;
  padding: .5rem 1rem;
  font-size: .875rem;
  transition: all .15s;
}

.tabs-module__JNGVta__triggerPill:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

.tabs-module__JNGVta__triggerPill[data-state="active"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.tabs-module__JNGVta__content {
  outline: none;
}

html:is([data-theme="ink"], [data-theme="paper"]) .tabs-module__JNGVta__triggerUnderline {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-disabled);
  font-size: .75rem;
  font-weight: 400;
}

html:is([data-theme="ink"], [data-theme="paper"]) .tabs-module__JNGVta__triggerUnderline[data-state="active"] {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .tabs-module__JNGVta__triggerPill {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-disabled);
  border-color: var(--color-border-visible);
  border-radius: 999px;
  font-size: .75rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .tabs-module__JNGVta__triggerPill[data-state="active"] {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}

/* [project]/apps/DentAI/frontend/src/components/ui/progress.module.css [app-client] (css) */
.progress-module__HmSniq__track {
  background: var(--color-border);
  border-radius: 9999px;
  height: 3px;
  position: relative;
  overflow: hidden;
}

.progress-module__HmSniq__fill {
  background: var(--color-primary);
  border-radius: 9999px;
  height: 100%;
  transition: width .4s;
}

.progress-module__HmSniq__md {
  height: 6px;
}

.progress-module__HmSniq__lg {
  height: 8px;
}

html:is([data-theme="ink"], [data-theme="paper"]) .progress-module__HmSniq__track {
  background: var(--color-border);
  border-radius: 0;
}

html:is([data-theme="ink"], [data-theme="paper"]) .progress-module__HmSniq__fill {
  background: var(--color-text);
  border-radius: 0;
  transition: width .25s;
}

/* [project]/apps/DentAI/frontend/src/components/ui/select.module.css [app-client] (css) */
.select-module__Vu0smW__trigger {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  width: 100%;
  color: var(--color-text);
  cursor: pointer;
  outline: none;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  font-family: inherit;
  font-size: .875rem;
  transition: border-color .2s;
  display: inline-flex;
}

.select-module__Vu0smW__trigger:focus {
  border-color: var(--color-primary);
}

.select-module__Vu0smW__trigger[data-placeholder] {
  color: var(--color-text-light);
}

.select-module__Vu0smW__icon {
  color: var(--color-text-light);
  flex-shrink: 0;
}

.select-module__Vu0smW__content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  z-index: 100;
  padding: .25rem;
  animation: .15s select-module__Vu0smW__slideDown;
  overflow: hidden;
  box-shadow: 0 4px 16px #0000001f;
}

@keyframes select-module__Vu0smW__slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select-module__Vu0smW__viewport {
  padding: 0;
}

.select-module__Vu0smW__item {
  border-radius: calc(var(--radius) - 2px);
  color: var(--color-text-light);
  cursor: pointer;
  outline: none;
  padding: .5rem .75rem;
  font-size: .875rem;
  transition: background .1s, color .1s;
}

.select-module__Vu0smW__item:hover, .select-module__Vu0smW__item[data-highlighted] {
  background: var(--color-bg);
  color: var(--color-text);
}

.select-module__Vu0smW__item[data-state="checked"] {
  color: var(--color-primary);
  font-weight: 500;
}

.select-module__Vu0smW__separator {
  background: var(--color-border);
  height: 1px;
  margin: .25rem 0;
}

.select-module__Vu0smW__label {
  color: var(--color-text-light);
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__trigger {
  font-family: var(--font-mono);
  border-color: var(--color-border-visible);
  border-radius: 8px;
  font-size: .8125rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__trigger:focus {
  border-color: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__content {
  border-color: var(--color-border-visible);
  box-shadow: none;
  border-radius: 8px;
}

html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__item {
  font-family: var(--font-mono);
  letter-spacing: .04em;
  border-radius: 4px;
  font-size: .75rem;
}

:is(html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__item:hover, html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__item[data-highlighted]) {
  background: var(--color-surface-raised);
}

html:is([data-theme="ink"], [data-theme="paper"]) .select-module__Vu0smW__label {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 400;
}

/* [project]/apps/DentAI/frontend/src/components/ui/checkbox.module.css [app-client] (css) */
.checkbox-module__kpla7W__checkbox {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: background .15s, border-color .15s;
  display: inline-flex;
}

.checkbox-module__kpla7W__checkbox:hover {
  border-color: var(--color-primary);
}

.checkbox-module__kpla7W__checkbox:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.checkbox-module__kpla7W__checkbox[data-state="checked"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-module__kpla7W__indicator {
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.checkbox-module__kpla7W__label {
  color: var(--color-text);
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  display: flex;
}

html:is([data-theme="ink"], [data-theme="paper"]) .checkbox-module__kpla7W__checkbox {
  border-color: var(--color-border-visible);
  border-radius: 4px;
}

html:is([data-theme="ink"], [data-theme="paper"]) .checkbox-module__kpla7W__checkbox:hover {
  border-color: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .checkbox-module__kpla7W__checkbox[data-state="checked"] {
  background: var(--color-text);
  border-color: var(--color-text);
}

html:is([data-theme="ink"], [data-theme="paper"]) .checkbox-module__kpla7W__indicator {
  color: var(--color-bg);
}

html:is([data-theme="ink"], [data-theme="paper"]) .checkbox-module__kpla7W__label {
  font-family: var(--font-body);
}

/* [project]/apps/DentAI/frontend/src/components/ui/segmented-progress.module.css [app-client] (css) */
.segmented-progress-module__tc539W__track {
  gap: 2px;
  width: 100%;
  display: flex;
}

.segmented-progress-module__tc539W__segment {
  background: var(--color-border, #222);
  flex: 1;
  height: 8px;
  transition: background .15s ease-out;
}

.segmented-progress-module__tc539W__filled {
  background: var(--color-text, #e8e8e8);
}

.segmented-progress-module__tc539W__success .segmented-progress-module__tc539W__filled {
  background: var(--color-success, #4a9e5c);
}

.segmented-progress-module__tc539W__warning .segmented-progress-module__tc539W__filled {
  background: var(--color-warning, #d4a843);
}

.segmented-progress-module__tc539W__accent .segmented-progress-module__tc539W__filled {
  background: var(--color-accent, var(--color-error, #d71921));
}

.segmented-progress-module__tc539W__sm, .segmented-progress-module__tc539W__sm .segmented-progress-module__tc539W__segment {
  height: 4px;
}

.segmented-progress-module__tc539W__md .segmented-progress-module__tc539W__segment {
  height: 8px;
}

.segmented-progress-module__tc539W__lg .segmented-progress-module__tc539W__segment {
  height: 12px;
}

.segmented-progress-module__tc539W__xl .segmented-progress-module__tc539W__segment {
  height: 16px;
}

/* [project]/apps/DentAI/frontend/src/components/toast.module.css [app-client] (css) */
.toast-module__cIQOPG__container {
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  gap: .5rem;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.toast-module__cIQOPG__toast {
  pointer-events: all;
  border-radius: 8px;
  align-items: center;
  gap: .75rem;
  max-width: 360px;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  animation: .2s toast-module__cIQOPG__slideIn;
  display: flex;
  box-shadow: 0 4px 12px #00000026;
}

@keyframes toast-module__cIQOPG__slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-module__cIQOPG__error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.toast-module__cIQOPG__success {
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.toast-module__cIQOPG__info {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.toast-module__cIQOPG__warning {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}

.toast-module__cIQOPG__message {
  flex: 1;
}

.toast-module__cIQOPG__close {
  cursor: pointer;
  color: inherit;
  opacity: .6;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 0;
  font-size: .75rem;
  line-height: 1;
}

.toast-module__cIQOPG__close:hover {
  opacity: 1;
}

html:is([data-theme="ink"], [data-theme="paper"]) .toast-module__cIQOPG__toast {
  font-family: var(--font-mono);
  letter-spacing: .04em;
  box-shadow: none;
  border-radius: 4px;
  font-size: .8125rem;
}

html:is([data-theme="ink"], [data-theme="paper"]) .toast-module__cIQOPG__error {
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

html:is([data-theme="ink"], [data-theme="paper"]) .toast-module__cIQOPG__success {
  background: var(--color-surface);
  color: var(--color-success);
  border: 1px solid var(--color-success);
}

html:is([data-theme="ink"], [data-theme="paper"]) .toast-module__cIQOPG__info {
  border-color: var(--color-border-visible);
}

/* [project]/apps/DentAI/frontend/src/app/globals.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: .25rem;
    --radius-lg: .5rem;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

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

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

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

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

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

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

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

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

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

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

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

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

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

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

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .start {
    inset-inline-start: var(--spacing);
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .flex-shrink {
    flex-shrink: 1;
  }

  .grow {
    flex-grow: 1;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .resize {
    resize: both;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .capitalize {
    text-transform: capitalize;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

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

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-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, );
  }
}

:root {
  --color-primary: #171717;
  --color-primary-dark: #000;
  --color-secondary: #0891b2;
  --color-bg: #f8fafc;
  --color-surface: #fff;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-error: #dc2626;
  --radius: 8px;
  --shadow: 0 1px 3px #0000001a;
  --shadow-md: 0 4px 6px #0000001a;
}

html[data-theme="dark"] {
  --color-bg: #09090b;
  --color-surface: #18181b;
  --color-text: #f4f4f5;
  --color-text-light: #a1a1aa;
  --color-border: #27272a;
  --color-primary: #3b82f6;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="midnight"] {
  --color-bg: #0d1117;
  --color-surface: #161b22;
  --color-text: #c9d1d9;
  --color-text-light: #8b949e;
  --color-border: #30363d;
  --color-primary: #58a6ff;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="tokyo-night"] {
  --color-bg: #1a1b2e;
  --color-surface: #24283b;
  --color-text: #c0caf5;
  --color-text-light: #787c99;
  --color-border: #414868;
  --color-primary: #7aa2f7;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="nord"] {
  --color-bg: #2e3440;
  --color-surface: #3b4252;
  --color-text: #eceff4;
  --color-text-light: #d8dee9;
  --color-border: #4c566a;
  --color-primary: #88c0d0;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="mocha"] {
  --color-bg: #1e1e2e;
  --color-surface: #313244;
  --color-text: #cdd6f4;
  --color-text-light: #a6adc8;
  --color-border: #45475a;
  --color-primary: #cba6f7;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="rose-pine"] {
  --color-bg: #191724;
  --color-surface: #1f1d2e;
  --color-text: #e0def4;
  --color-text-light: #908caa;
  --color-border: #26233a;
  --color-primary: #eb6f92;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="solarized"] {
  --color-bg: #002b36;
  --color-surface: #073642;
  --color-text: #839496;
  --color-text-light: #586e75;
  --color-border: #0a4050;
  --color-primary: #268bd2;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="forest"] {
  --color-bg: #0d1f0d;
  --color-surface: #1a2e1a;
  --color-text: #d4ead4;
  --color-text-light: #7a9e7a;
  --color-border: #2a3e2a;
  --color-primary: #4ade80;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="ocean"] {
  --color-bg: #0a1628;
  --color-surface: #0f2244;
  --color-text: #bae6fd;
  --color-text-light: #7cb9d4;
  --color-border: #1e3a5f;
  --color-primary: #06b6d4;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="amber"] {
  --color-bg: #1a1200;
  --color-surface: #2a1e00;
  --color-text: #fef3c7;
  --color-text-light: #d4a017;
  --color-border: #3d2e00;
  --color-primary: #f59e0b;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="slate"] {
  --color-bg: #1e293b;
  --color-surface: #334155;
  --color-text: #e2e8f0;
  --color-text-light: #94a3b8;
  --color-border: #475569;
  --color-primary: #38bdf8;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="crimson"] {
  --color-bg: #1a0a0a;
  --color-surface: #2a1515;
  --color-text: #fecaca;
  --color-text-light: #b07070;
  --color-border: #3d2020;
  --color-primary: #ef4444;
  --shadow: 0 1px 3px #0006;
  --shadow-md: 0 4px 6px #0006;
}

html[data-theme="high-contrast"] {
  --color-bg: #000;
  --color-surface: #1a1a1a;
  --color-text: #fff;
  --color-text-light: #aaa;
  --color-border: #333;
  --color-primary: #fff;
  --shadow: 0 1px 3px #000c;
  --shadow-md: 0 4px 6px #000c;
}

html[data-theme="ink"] {
  --color-bg: #000;
  --color-surface: #111;
  --color-surface-raised: #1a1a1a;
  --color-text: #e8e8e8;
  --color-text-light: #999;
  --color-text-disabled: #666;
  --color-border: #222;
  --color-border-visible: #333;
  --color-primary: #e8e8e8;
  --color-secondary: #999;
  --color-success: #4a9e5c;
  --color-warning: #d4a843;
  --color-error: #d71921;
  --color-accent: #d71921;
  --radius: 12px;
  --shadow: none;
  --shadow-md: none;
  --font-display: "Doto", "Space Mono", monospace;
  --font-body: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", monospace;
}

html[data-theme="paper"] {
  --color-bg: #f5f5f5;
  --color-surface: #fff;
  --color-surface-raised: #f0f0f0;
  --color-text: #1a1a1a;
  --color-text-light: #666;
  --color-text-disabled: #999;
  --color-border: #e8e8e8;
  --color-border-visible: #ccc;
  --color-primary: #1a1a1a;
  --color-secondary: #666;
  --color-success: #4a9e5c;
  --color-warning: #d4a843;
  --color-error: #d71921;
  --color-accent: #d71921;
  --radius: 12px;
  --shadow: none;
  --shadow-md: none;
  --font-display: "Doto", "Space Mono", monospace;
  --font-body: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

button.primary {
  background: var(--color-primary);
  color: #fff;
}

button.primary:hover {
  filter: brightness(.88);
}

button.secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

button.secondary:hover {
  background: var(--color-bg);
}

input, textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  width: 100%;
  padding: .5rem .75rem;
  font-family: inherit;
  font-size: .875rem;
  transition: border-color .2s;
}

input:focus, textarea:focus {
  border-color: var(--color-primary);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

/*# sourceMappingURL=apps_DentAI_frontend_src_0q_y0_c._.css.map*/