/* [project]/src/components/Sidebar.module.css [app-client] (css) */
.Sidebar-module__WZVnLW__sidebar {
  z-index: 20;
  border-right: 1px solid var(--sidebar-border);
  background: var(--sidebar);
  flex-direction: column;
  width: 18rem;
  height: 100%;
  transition: width .2s;
  display: flex;
  position: relative;
}

.Sidebar-module__WZVnLW__collapsed {
  width: 3.75rem;
}

.Sidebar-module__WZVnLW__brand {
  align-items: center;
  gap: .625rem;
  padding: .75rem;
  display: flex;
}

.Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__brand {
  justify-content: center;
  padding: 1.25rem 0 .75rem;
}

.Sidebar-module__WZVnLW__brandIdentity {
  color: inherit;
  border-radius: .375rem;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  display: flex;
}

.Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__brandIdentity, .Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__brandSpacer {
  display: none;
}

.Sidebar-module__WZVnLW__brandSpacer {
  flex: 1;
}

.Sidebar-module__WZVnLW__toggle {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  transition: background-color .15s, color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__toggle:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__list, .Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__accountText {
  display: none;
}

.Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__footer {
  justify-content: center;
  display: flex;
}

.Sidebar-module__WZVnLW__collapsed .Sidebar-module__WZVnLW__account {
  width: auto;
}

.Sidebar-module__WZVnLW__railIcons {
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: .35rem;
  padding: .5rem 0;
  display: flex;
}

.Sidebar-module__WZVnLW__railIcon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: flex;
  position: relative;
}

.Sidebar-module__WZVnLW__railIcon:hover, .Sidebar-module__WZVnLW__railIconActive {
  background: var(--accent-soft);
  color: var(--accent);
}

.Sidebar-module__WZVnLW__railTip {
  white-space: nowrap;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  background: #1b2230;
  border-radius: .375rem;
  padding: .3rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  transition: opacity .12s;
  position: absolute;
  top: 50%;
  left: calc(100% + .5rem);
  transform: translateY(-50%);
}

.Sidebar-module__WZVnLW__railIcon:hover .Sidebar-module__WZVnLW__railTip, .Sidebar-module__WZVnLW__railIcon:focus-visible .Sidebar-module__WZVnLW__railTip {
  opacity: 1;
}

.Sidebar-module__WZVnLW__brandLogo {
  object-fit: contain;
  border-radius: .375rem;
  width: 3.5rem;
  height: 3.5rem;
}

.Sidebar-module__WZVnLW__brandName {
  letter-spacing: -.01em;
  font-size: .9375rem;
  font-weight: 600;
}

.Sidebar-module__WZVnLW__newDeclaration {
  background: var(--accent);
  color: #fff;
  border-radius: .5rem;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__newDeclaration:hover {
  opacity: .92;
}

.Sidebar-module__WZVnLW__newDeclarationActive {
  box-shadow: 0 0 0 2px var(--ring);
}

.Sidebar-module__WZVnLW__projectControls {
  flex-direction: column;
  gap: .5rem;
  margin: .1rem 0 .35rem;
  display: flex;
}

.Sidebar-module__WZVnLW__addClient {
  gap: .4rem;
  display: flex;
}

.Sidebar-module__WZVnLW__addClientInput {
  border: 1px solid var(--border);
  background: var(--panel);
  min-width: 0;
  height: 2.25rem;
  color: var(--foreground);
  border-radius: .5rem;
  outline: none;
  flex: 1;
  padding: 0 .6rem;
  font-size: .875rem;
}

.Sidebar-module__WZVnLW__addClientInput:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--ring);
}

.Sidebar-module__WZVnLW__addClientBtn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: .5rem;
  flex-shrink: 0;
  padding: 0 .8rem;
  font-size: .8125rem;
  font-weight: 600;
  transition: opacity .15s;
}

.Sidebar-module__WZVnLW__addClientBtn:disabled {
  opacity: .5;
}

.Sidebar-module__WZVnLW__sectionAddBtn {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .45rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: background-color .15s, color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__sectionAddBtn svg {
  transition: transform .18s;
}

.Sidebar-module__WZVnLW__sectionAddBtnActive svg {
  transform: rotate(45deg);
}

.Sidebar-module__WZVnLW__sectionAddBtn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.Sidebar-module__WZVnLW__swapIn {
  animation: .18s Sidebar-module__WZVnLW__swapIn;
}

@keyframes Sidebar-module__WZVnLW__swapIn {
  from {
    opacity: 0;
    transform: translateY(-.3rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.Sidebar-module__WZVnLW__emptyState {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  height: 100%;
  padding: 1rem .5rem;
  display: flex;
}

.Sidebar-module__WZVnLW__emptyState .Sidebar-module__WZVnLW__addClient {
  width: 100%;
}

.Sidebar-module__WZVnLW__firstClientBtn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .65rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__firstClientBtn:hover {
  opacity: .92;
}

.Sidebar-module__WZVnLW__emptyStateHint {
  text-align: center;
  color: var(--muted);
  font-size: .8125rem;
}

.Sidebar-module__WZVnLW__search {
  background: var(--panel);
  height: 2.25rem;
  box-shadow: inset 0 0 0 1px var(--border);
  border-radius: .5rem;
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
  display: flex;
}

.Sidebar-module__WZVnLW__search:focus-within {
  box-shadow: inset 0 0 0 2px var(--ring);
}

.Sidebar-module__WZVnLW__searchInput {
  width: 100%;
  color: var(--foreground);
  background: none;
  border: none;
  outline: none;
  font-size: .875rem;
}

.Sidebar-module__WZVnLW__searchInput::placeholder {
  color: var(--muted);
}

.Sidebar-module__WZVnLW__list {
  flex: 1;
  padding: .5rem .75rem;
  overflow-y: auto;
}

.Sidebar-module__WZVnLW__listLabel {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
}

.Sidebar-module__WZVnLW__listItems {
  flex-direction: column;
  gap: .125rem;
  list-style: none;
  display: flex;
}

.Sidebar-module__WZVnLW__projectRowWrap {
  align-items: center;
  gap: .15rem;
  display: flex;
}

.Sidebar-module__WZVnLW__projectRowWrap:hover .Sidebar-module__WZVnLW__projectMenuBtn, .Sidebar-module__WZVnLW__clientRowWrap:hover .Sidebar-module__WZVnLW__projectMenuBtn, .Sidebar-module__WZVnLW__projectMenuBtn:focus-visible, .Sidebar-module__WZVnLW__projectMenuBtnOpen {
  opacity: 1;
}

.Sidebar-module__WZVnLW__projectMenuBtn {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  background: none;
  border: none;
  border-radius: .45rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .15s, background-color .15s, color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__projectMenuBtn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.Sidebar-module__WZVnLW__projectButton {
  text-align: left;
  background: none;
  border: none;
  border-radius: .5rem;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: .125rem;
  min-width: 0;
  padding: .5rem .625rem;
  text-decoration: none;
  transition: background-color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__projectButton:hover {
  background: var(--accent-soft);
}

.Sidebar-module__WZVnLW__activeDot {
  background: var(--accent);
  border-radius: 9999px;
  flex-shrink: 0;
  width: .4rem;
  height: .4rem;
}

.Sidebar-module__WZVnLW__runDot {
  background: var(--warn);
  border-radius: 9999px;
  flex-shrink: 0;
  width: .4rem;
  height: .4rem;
  animation: 1.4s ease-in-out infinite Sidebar-module__WZVnLW__runPulse;
}

@keyframes Sidebar-module__WZVnLW__runPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.75);
  }
}

@media (prefers-reduced-motion: reduce) {
  .Sidebar-module__WZVnLW__runDot {
    animation: none;
  }
}

.Sidebar-module__WZVnLW__activeDotSlot {
  flex-shrink: 0;
  justify-content: center;
  width: .4rem;
  display: flex;
}

.Sidebar-module__WZVnLW__projectName {
  color: var(--foreground);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-size: .875rem;
  font-weight: 500;
  overflow: hidden;
}

.Sidebar-module__WZVnLW__projectMeta {
  color: var(--muted);
  font-size: .75rem;
}

.Sidebar-module__WZVnLW__empty {
  text-align: center;
  color: var(--muted);
  padding: 1.5rem .625rem;
  font-size: .875rem;
}

.Sidebar-module__WZVnLW__emptyLoading {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.Sidebar-module__WZVnLW__clientRowWrap {
  align-items: center;
  gap: .15rem;
  display: flex;
}

.Sidebar-module__WZVnLW__clientRow {
  text-align: left;
  background: none;
  border: none;
  border-radius: .5rem;
  flex: 1;
  align-items: center;
  gap: .4rem;
  min-width: 0;
  padding: .5rem;
  transition: background-color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__clientRow:hover {
  background: var(--accent-soft);
}

.Sidebar-module__WZVnLW__clientName {
  min-width: 0;
  color: var(--foreground);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: .875rem;
  font-weight: 500;
  overflow: hidden;
}

.Sidebar-module__WZVnLW__clientCount {
  background: var(--panel);
  text-align: center;
  min-width: 1.25rem;
  color: var(--muted);
  border-radius: 9999px;
  flex-shrink: 0;
  padding: .05rem .4rem;
  font-size: .6875rem;
  font-weight: 500;
}

.Sidebar-module__WZVnLW__declarationList {
  border-left: 1px solid var(--border);
  flex-direction: column;
  gap: .125rem;
  margin: .125rem 0 .25rem .85rem;
  padding-left: .5rem;
  list-style: none;
  display: flex;
}

.Sidebar-module__WZVnLW__sectionHead {
  justify-content: space-between;
  align-items: center;
  gap: .25rem;
  display: flex;
}

.Sidebar-module__WZVnLW__sectionHeadGap {
  margin-top: 1rem;
}

.Sidebar-module__WZVnLW__sectionLabel {
  padding: .3rem .4rem;
  display: block;
}

.Sidebar-module__WZVnLW__sectionToggle {
  text-align: left;
  background: none;
  border: none;
  border-radius: .375rem;
  flex: 1;
  align-items: center;
  gap: .3rem;
  min-width: 0;
  padding: .3rem .4rem;
  transition: background-color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__sectionToggle:hover {
  background: var(--accent-soft);
}

.Sidebar-module__WZVnLW__chevron {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .15s;
}

.Sidebar-module__WZVnLW__chevronOpen {
  transform: rotate(90deg);
}

.Sidebar-module__WZVnLW__footer {
  border-top: 1px solid var(--sidebar-border);
  flex-direction: column;
  gap: .25rem;
  padding: .5rem .75rem .75rem;
  display: flex;
}

.Sidebar-module__WZVnLW__accountWrap {
  position: relative;
}

.Sidebar-module__WZVnLW__account {
  background: none;
  border: none;
  border-radius: .5rem;
  align-items: center;
  gap: .625rem;
  width: 100%;
  padding: .375rem .5rem;
  transition: background-color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__account:hover {
  background: var(--accent-soft);
}

.Sidebar-module__WZVnLW__accountMenu {
  border: 1px solid var(--border);
  background: var(--panel);
  z-index: 20;
  border-radius: .625rem;
  flex-direction: column;
  gap: .125rem;
  min-width: 13rem;
  padding: .375rem;
  display: flex;
  position: absolute;
  bottom: calc(100% + .5rem);
  left: 0;
  right: 0;
  box-shadow: 0 12px 32px #141c2d29;
}

.Sidebar-module__WZVnLW__accountMenuHeader {
  align-items: center;
  gap: .625rem;
  padding: .5rem .5rem .6rem;
  display: flex;
}

.Sidebar-module__WZVnLW__accountEmail {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-size: .75rem;
  line-height: 1.2;
  overflow: hidden;
}

.Sidebar-module__WZVnLW__menuDivider {
  background: var(--border);
  height: 1px;
  margin: .125rem .25rem .25rem;
}

.Sidebar-module__WZVnLW__menuItem {
  text-align: left;
  width: 100%;
  color: var(--foreground);
  background: none;
  border: none;
  border-radius: .45rem;
  align-items: center;
  gap: .625rem;
  padding: .5rem .55rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: flex;
}

.Sidebar-module__WZVnLW__menuItem:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.Sidebar-module__WZVnLW__menuItemDanger {
  color: #c0392b;
}

.Sidebar-module__WZVnLW__menuItemDanger:hover {
  color: #c0392b;
  background: #c0392b14;
}

.Sidebar-module__WZVnLW__avatar {
  color: #fff;
  background: #1b2230d9;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.Sidebar-module__WZVnLW__accountText {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.Sidebar-module__WZVnLW__accountName {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.2;
}

.Sidebar-module__WZVnLW__accountPlan {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.2;
}

.Sidebar-module__WZVnLW__iconMuted {
  color: var(--muted);
}

.Sidebar-module__WZVnLW__contextMenu {
  z-index: 1000;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e4e7ec);
  border-radius: 10px;
  min-width: 190px;
  padding: .3rem;
  position: fixed;
  box-shadow: 0 8px 24px #10182824;
}

.Sidebar-module__WZVnLW__contextMenuItem {
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: var(--text, #1d2939);
  background: none;
  border: none;
  border-radius: 7px;
  align-items: center;
  gap: .55rem;
  padding: .5rem .6rem;
  font-size: .85rem;
  text-decoration: none;
  display: flex;
}

.Sidebar-module__WZVnLW__contextMenuItem:hover {
  background: var(--hover, #f5f6f8);
}

.Sidebar-module__WZVnLW__contextMenuItemDanger {
  color: #b42318;
}

.Sidebar-module__WZVnLW__contextMenuItemDanger:hover {
  background: #fdf1f1;
}

.Sidebar-module__WZVnLW__confirmOverlay {
  z-index: 1100;
  background: #141c2d73;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.Sidebar-module__WZVnLW__confirmDialog {
  border: 1px solid var(--border);
  background: var(--panel, #fff);
  border-radius: .875rem;
  width: 100%;
  max-width: 26rem;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: 0 18px 48px #141c2d47;
}

.Sidebar-module__WZVnLW__confirmTitle {
  color: var(--foreground);
  font-size: 1.0625rem;
  font-weight: 600;
}

.Sidebar-module__WZVnLW__confirmText {
  color: var(--muted);
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.45;
}

.Sidebar-module__WZVnLW__confirmActions {
  justify-content: flex-end;
  gap: .5rem;
  margin-top: 1.25rem;
  display: flex;
}

.Sidebar-module__WZVnLW__confirmGhost {
  border: 1px solid var(--border);
  background: var(--panel, #fff);
  color: var(--muted);
  cursor: pointer;
  border-radius: .5rem;
  padding: .5rem .9rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .15s, color .15s;
}

.Sidebar-module__WZVnLW__confirmGhost:hover {
  background: var(--accent-soft);
  color: var(--foreground);
}

.Sidebar-module__WZVnLW__confirmDanger {
  color: #fff;
  cursor: pointer;
  background: #b42318;
  border: none;
  border-radius: .5rem;
  padding: .5rem .9rem;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .15s;
}

.Sidebar-module__WZVnLW__confirmDanger:hover {
  opacity: .9;
}

/* [project]/src/components/Select.module.css [app-client] (css) */
.Select-module__fwgB3a__root {
  width: 100%;
  position: relative;
}

.Select-module__fwgB3a__trigger {
  border: 1px solid var(--border);
  background: var(--background);
  width: 100%;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  border-radius: .5rem;
  outline: none;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
}

.Select-module__fwgB3a__trigger:focus-visible, .Select-module__fwgB3a__triggerOpen {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.Select-module__fwgB3a__trigger:disabled {
  cursor: default;
  color: var(--muted);
  background: var(--panel);
}

.Select-module__fwgB3a__placeholder {
  color: var(--muted);
}

.Select-module__fwgB3a__triggerLabel {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.Select-module__fwgB3a__chevron {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .15s;
}

.Select-module__fwgB3a__chevronOpen {
  transform: rotate(180deg);
}

.Select-module__fwgB3a__menu {
  z-index: 30;
  background: var(--panel, #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-height: 14rem;
  margin: 0;
  padding: .3rem;
  list-style: none;
  animation: .12s Select-module__fwgB3a__menuIn;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 8px 24px #10182824;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.Select-module__fwgB3a__option {
  color: var(--foreground);
  cursor: pointer;
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .45rem .6rem;
  font-size: .8125rem;
  font-weight: 500;
  display: flex;
}

.Select-module__fwgB3a__optionActive {
  background: var(--accent-soft);
}

.Select-module__fwgB3a__optionSelected {
  color: var(--accent);
}

.Select-module__fwgB3a__optionLabel {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* [project]/src/components/DeclarationSetup.module.css [app-client] (css) */
.DeclarationSetup-module__rojukG__header {
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .75rem;
  margin-bottom: .5rem;
  padding: .5rem .5rem .85rem;
  display: flex;
}

.DeclarationSetup-module__rojukG__field {
  flex-direction: column;
  flex: 12rem;
  gap: .3rem;
  min-width: 0;
  display: flex;
}

.DeclarationSetup-module__rojukG__label {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
}

.DeclarationSetup-module__rojukG__manage {
  color: var(--accent);
  flex-shrink: 0;
  padding-bottom: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  text-decoration: none;
}

.DeclarationSetup-module__rojukG__manage:hover {
  text-decoration: underline;
}

/* [project]/src/components/FileDropzone.module.css [app-client] (css) */
.FileDropzone-module__NWZJEq__wrap {
  width: 100%;
  max-width: 42rem;
}

.FileDropzone-module__NWZJEq__card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 1rem;
  padding: .5rem;
  box-shadow: 0 1px 2px #0000000a;
}

.FileDropzone-module__NWZJEq__dropzone {
  cursor: pointer;
  border: 2px dashed var(--border);
  text-align: center;
  background: #eef1f780;
  border-radius: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: 3rem 1.5rem;
  transition: border-color .15s, background-color .15s;
  display: flex;
}

.FileDropzone-module__NWZJEq__dropzone:hover {
  background: #e6f0fe80;
  border-color: #1174f580;
}

.FileDropzone-module__NWZJEq__dropzoneActive {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.FileDropzone-module__NWZJEq__dropIcon {
  background: var(--accent-soft);
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.FileDropzone-module__NWZJEq__dropTitle {
  color: var(--foreground);
  font-size: .9375rem;
  font-weight: 500;
}

.FileDropzone-module__NWZJEq__browse {
  color: var(--accent);
}

.FileDropzone-module__NWZJEq__dropzone:hover .FileDropzone-module__NWZJEq__browse {
  text-underline-offset: 2px;
  text-decoration: underline;
}

.FileDropzone-module__NWZJEq__dropHint {
  color: var(--muted);
  margin-top: .25rem;
  font-size: .875rem;
}

.FileDropzone-module__NWZJEq__hiddenInput {
  display: none;
}

.FileDropzone-module__NWZJEq__fileList {
  scrollbar-width: thin;
  gap: .25rem;
  margin-top: .5rem;
  padding: .25rem .25rem .5rem;
  list-style: none;
  display: flex;
  overflow-x: auto;
}

.FileDropzone-module__NWZJEq__fileList::-webkit-scrollbar {
  height: 6px;
}

.FileDropzone-module__NWZJEq__fadeLeft {
  -webkit-mask-image: linear-gradient(to right, #0000, #000 2.5rem);
  mask-image: linear-gradient(to right, #0000, #000 2.5rem);
}

.FileDropzone-module__NWZJEq__fadeRight {
  -webkit-mask-image: linear-gradient(to left, #0000, #000 2.5rem);
  mask-image: linear-gradient(to left, #0000, #000 2.5rem);
}

.FileDropzone-module__NWZJEq__fadeLeft.FileDropzone-module__NWZJEq__fadeRight {
  -webkit-mask-image: linear-gradient(to right, #0000, #000 2.5rem calc(100% - 2.5rem), #0000);
  mask-image: linear-gradient(to right, #0000, #000 2.5rem calc(100% - 2.5rem), #0000);
}

.FileDropzone-module__NWZJEq__fileList::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

.FileDropzone-module__NWZJEq__fileItem {
  background: #eef1f7b3;
  border-radius: .5rem;
  flex: 0 0 13rem;
  align-items: center;
  gap: .75rem;
  padding: .5rem .75rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__fileInfo {
  flex: 1;
  min-width: 0;
}

.FileDropzone-module__NWZJEq__fileName {
  color: var(--foreground);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 500;
  overflow: hidden;
}

.FileDropzone-module__NWZJEq__fileSize {
  color: var(--muted);
  font-size: .75rem;
}

.FileDropzone-module__NWZJEq__removeButton {
  color: var(--muted);
  background: none;
  border: none;
  border-radius: .375rem;
  padding: .25rem;
  transition: background-color .15s, color .15s;
  display: flex;
}

.FileDropzone-module__NWZJEq__removeButton:hover {
  background: var(--border);
  color: var(--foreground);
}

.FileDropzone-module__NWZJEq__fileIcon {
  color: var(--muted);
  flex-shrink: 0;
}

.FileDropzone-module__NWZJEq__actions {
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__statusLink {
  color: var(--muted);
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: .75rem;
  text-decoration: underline;
  transition: color .15s;
}

.FileDropzone-module__NWZJEq__statusLink:hover {
  color: var(--foreground);
}

.FileDropzone-module__NWZJEq__modalOverlay {
  z-index: 50;
  background: #10182873;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.FileDropzone-module__NWZJEq__modal {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 1rem;
  flex-direction: column;
  width: 36rem;
  max-width: 100%;
  max-height: min(36rem, 85vh);
  padding: 1rem;
  display: flex;
  box-shadow: 0 16px 48px #0003;
}

.FileDropzone-module__NWZJEq__modalHead {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__modalTitle {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}

.FileDropzone-module__NWZJEq__filesSearch {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--foreground);
  border-radius: .5rem;
  outline: none;
  padding: .4rem .6rem;
  font-size: .8125rem;
}

.FileDropzone-module__NWZJEq__filesSearch:focus {
  border-color: var(--accent);
}

.FileDropzone-module__NWZJEq__modalList {
  scrollbar-width: thin;
  flex-direction: column;
  gap: .25rem;
  min-height: 0;
  margin-top: .5rem;
  margin-right: -.75rem;
  padding-right: .75rem;
  list-style: none;
  display: flex;
  overflow-y: auto;
}

.FileDropzone-module__NWZJEq__modalList::-webkit-scrollbar {
  width: 6px;
}

.FileDropzone-module__NWZJEq__modalList::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

.FileDropzone-module__NWZJEq__modalItem {
  background: #eef1f7b3;
  border-radius: .5rem;
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  padding: .5rem .75rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__modalName {
  color: var(--foreground);
  overflow-wrap: anywhere;
  font-size: .875rem;
  font-weight: 500;
}

.FileDropzone-module__NWZJEq__modalEmpty {
  text-align: center;
  color: var(--muted);
  padding: .75rem;
  font-size: .8125rem;
}

.FileDropzone-module__NWZJEq__processButton {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: .5rem;
  align-items: center;
  gap: .375rem;
  margin-left: auto;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .15s;
  display: flex;
}

.FileDropzone-module__NWZJEq__processButton:hover:not(:disabled) {
  background: var(--accent-hover);
}

.FileDropzone-module__NWZJEq__processButton:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.FileDropzone-module__NWZJEq__error {
  color: #b42318;
  padding: 0 .75rem .75rem;
  font-size: .8125rem;
}

.FileDropzone-module__NWZJEq__footnote {
  text-align: center;
  color: var(--muted);
  margin-top: .75rem;
  font-size: .75rem;
}

.FileDropzone-module__NWZJEq__errorText {
  color: #b42318;
  background: #fdf1f1;
  border: 1px solid #f3c2c2;
  border-radius: 8px;
  margin: .75rem 1.1rem 0;
  padding: .6rem .8rem;
  font-size: .8rem;
}

.FileDropzone-module__NWZJEq__elapsed {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--text, #1d2939);
  margin: .6rem 0 0;
  font-size: .85rem;
  font-weight: 600;
}

.FileDropzone-module__NWZJEq__stopButton {
  color: #b42318;
  cursor: pointer;
  background: #fff;
  border: 1px solid #f3c2c2;
  border-radius: 8px;
  margin: 1rem auto 0;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 500;
  transition: background .15s;
  display: block;
}

.FileDropzone-module__NWZJEq__stopButton:hover {
  background: #fdf1f1;
}

.FileDropzone-module__NWZJEq__uploading {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 2.25rem 1.5rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__uploadingTitle {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}

.FileDropzone-module__NWZJEq__uploadingText {
  max-width: 24rem;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
}

.FileDropzone-module__NWZJEq__uploadingCount {
  color: var(--accent);
  font-size: .8125rem;
  font-weight: 500;
}

.FileDropzone-module__NWZJEq__processing {
  padding: 1.25rem 1.1rem;
}

.FileDropzone-module__NWZJEq__processingHead {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__spinner {
  border: 2.5px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 9999px;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  animation: .7s linear infinite FileDropzone-module__NWZJEq__spin;
}

@keyframes FileDropzone-module__NWZJEq__spin {
  to {
    transform: rotate(360deg);
  }
}

.FileDropzone-module__NWZJEq__processingText {
  flex: 1;
  min-width: 0;
}

.FileDropzone-module__NWZJEq__processingTitle {
  color: var(--foreground);
  font-size: .9375rem;
  font-weight: 600;
}

.FileDropzone-module__NWZJEq__processingStep {
  color: var(--muted);
  margin-top: .15rem;
  font-size: .8125rem;
}

.FileDropzone-module__NWZJEq__processingPct {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  flex-shrink: 0;
  font-size: .9375rem;
  font-weight: 600;
}

.FileDropzone-module__NWZJEq__progressTrack {
  background: var(--accent-soft);
  border-radius: 9999px;
  height: .5rem;
  margin: 1rem 0 1.25rem;
  overflow: hidden;
}

.FileDropzone-module__NWZJEq__progressFill {
  background: var(--accent);
  border-radius: 9999px;
  height: 100%;
  transition: width 1s linear;
}

.FileDropzone-module__NWZJEq__stepList {
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  display: flex;
}

.FileDropzone-module__NWZJEq__stepItem {
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__stepMark {
  border-radius: 9999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.FileDropzone-module__NWZJEq__dot {
  background: currentColor;
  border-radius: 9999px;
  width: .45rem;
  height: .45rem;
}

.FileDropzone-module__NWZJEq__stepDone {
  color: var(--foreground);
}

.FileDropzone-module__NWZJEq__stepDone .FileDropzone-module__NWZJEq__stepMark {
  background: var(--accent);
  color: #fff;
}

.FileDropzone-module__NWZJEq__stepActive {
  color: var(--foreground);
  font-weight: 500;
}

.FileDropzone-module__NWZJEq__stepActive .FileDropzone-module__NWZJEq__stepMark {
  color: var(--accent);
  animation: 1s ease-in-out infinite FileDropzone-module__NWZJEq__pulse;
}

.FileDropzone-module__NWZJEq__stepPending {
  color: var(--muted);
}

.FileDropzone-module__NWZJEq__stepPending .FileDropzone-module__NWZJEq__stepMark {
  color: var(--border);
}

@keyframes FileDropzone-module__NWZJEq__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

.FileDropzone-module__NWZJEq__processingFootnote {
  color: var(--muted);
  margin-top: 1.25rem;
  font-size: .75rem;
}

/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__layout {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.page-module___8aEwW__main {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  display: flex;
}

.page-module___8aEwW__content {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 42rem;
  display: flex;
}

.page-module___8aEwW__title {
  text-align: center;
  letter-spacing: -.02em;
  color: var(--foreground);
  margin-bottom: .5rem;
  font-size: 2.25rem;
  font-weight: 600;
}

.page-module___8aEwW__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.page-module___8aEwW__gateIcon {
  background: var(--accent-soft);
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent);
  border-radius: .875rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.page-module___8aEwW__cta {
  background: var(--accent);
  color: #fff;
  border-radius: .625rem;
  align-items: center;
  gap: .4rem;
  padding: .625rem 1.1rem;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-flex;
}

.page-module___8aEwW__cta:hover {
  opacity: .9;
}

@media (max-width: 640px) {
  .page-module___8aEwW__title {
    font-size: 1.875rem;
  }
}

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