/* [project]/src/components/layout/Header.module.css [app-client] (css) */
.Header-module__lnUIdW__header {
  border-bottom: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: var(--bg-panel);
  z-index: 50;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
}

.Header-module__lnUIdW__container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.Header-module__lnUIdW__logo {
  color: var(--text-accent);
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Header-module__lnUIdW__title {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.Header-module__lnUIdW__icon {
  color: var(--text-accent);
}

.Header-module__lnUIdW__user {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Header-module__lnUIdW__userName {
  color: var(--text-secondary);
  font-size: .9rem;
}

.Header-module__lnUIdW__avatar {
  background: linear-gradient(135deg, var(--text-accent), #fef3c7);
  width: 40px;
  height: 40px;
  color: var(--bg-app);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
  box-shadow: 0 0 10px #fbbf244d;
}

.Header-module__lnUIdW__logoutBtn {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .2s;
  display: flex;
}

.Header-module__lnUIdW__logoutBtn:hover {
  color: var(--color-expense);
  border-color: var(--color-expense);
  background: #f871711a;
}

/* [project]/src/components/dashboard/Cockpit.module.css [app-client] (css) */
.Cockpit-module__lkWV1a__cockpit {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
}

.Cockpit-module__lkWV1a__card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Cockpit-module__lkWV1a__card:hover {
  box-shadow: var(--shadow-glow);
  border-color: #ffffff1a;
  transform: translateY(-2px);
}

.Cockpit-module__lkWV1a__profitCard {
  border-color: var(--border-highlight);
  background: linear-gradient(145deg, #1e293be6, #33415566);
}

.Cockpit-module__lkWV1a__cardHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.Cockpit-module__lkWV1a__label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .875rem;
  font-weight: 600;
}

.Cockpit-module__lkWV1a__amount {
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 700;
}

.Cockpit-module__lkWV1a__converted {
  color: var(--text-secondary);
  border-top: 1px solid #ffffff0d;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  font-family: monospace;
  font-size: .875rem;
  display: flex;
}

@media (max-width: 768px) {
  .Cockpit-module__lkWV1a__cockpit {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* [project]/src/components/transactions/TransactionList.module.css [app-client] (css) */
.TransactionList-module__YO8q9W__container {
  margin-bottom: 2rem;
  overflow: hidden;
}

.TransactionList-module__YO8q9W__table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.TransactionList-module__YO8q9W__table th {
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: .05em;
  padding: 1rem 1.5rem;
  font-size: .75rem;
  font-weight: 600;
}

.TransactionList-module__YO8q9W__table td {
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  vertical-align: middle;
  padding: 1rem 1.5rem;
  font-size: .95rem;
}

.TransactionList-module__YO8q9W__row:last-child td {
  border-bottom: none;
}

.TransactionList-module__YO8q9W__row:hover {
  background: #ffffff05;
}

.TransactionList-module__YO8q9W__amountHeader, .TransactionList-module__YO8q9W__amountCell {
  text-align: right;
  font-feature-settings: "tnum";
}

.TransactionList-module__YO8q9W__amountCell {
  font-weight: 600;
}

.TransactionList-module__YO8q9W__typeCell {
  width: 50px;
}

.TransactionList-module__YO8q9W__iconBase {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.TransactionList-module__YO8q9W__iconIncome {
  color: var(--color-income);
  background: #34d3991a;
}

.TransactionList-module__YO8q9W__iconExpense {
  color: var(--color-expense);
  background: #f871711a;
}

.TransactionList-module__YO8q9W__descCell {
  color: #fff;
  font-weight: 500;
}

.TransactionList-module__YO8q9W__badge {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .75rem;
  display: inline-block;
}

.TransactionList-module__YO8q9W__empty {
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-panel);
  border: 1px dashed var(--border-subtle);
  border-radius: 16px;
  padding: 4rem;
}

.TransactionList-module__YO8q9W__actionsHeader {
  width: 80px;
}

.TransactionList-module__YO8q9W__actionsCell {
  text-align: right;
}

.TransactionList-module__YO8q9W__actions {
  opacity: .4;
  justify-content: flex-end;
  gap: .5rem;
  transition: opacity .2s;
  display: flex;
}

.TransactionList-module__YO8q9W__row:hover .TransactionList-module__YO8q9W__actions {
  opacity: 1;
}

.TransactionList-module__YO8q9W__actionBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: .4rem;
  transition: all .2s;
  display: flex;
}

.TransactionList-module__YO8q9W__btnEdit:hover {
  color: var(--text-accent);
  background: #ffffff1a;
}

.TransactionList-module__YO8q9W__btnDelete:hover {
  color: var(--color-expense);
  background: #f871711a;
}

@media (max-width: 768px) {
  .TransactionList-module__YO8q9W__container {
    overflow-x: auto;
  }

  .TransactionList-module__YO8q9W__table {
    min-width: 700px;
  }

  .TransactionList-module__YO8q9W__table th, .TransactionList-module__YO8q9W__table td {
    padding: .75rem 1rem;
    font-size: .85rem;
  }

  .TransactionList-module__YO8q9W__actions {
    opacity: 1;
  }
}

/* [project]/src/components/controls/FilterBar.module.css [app-client] (css) */
.FilterBar-module__MDuvGG__bar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  display: flex;
}

.FilterBar-module__MDuvGG__left, .FilterBar-module__MDuvGG__right {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.FilterBar-module__MDuvGG__filterGroup {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.FilterBar-module__MDuvGG__filterGroup label {
  color: var(--text-secondary);
  text-transform: uppercase;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  display: flex;
}

.FilterBar-module__MDuvGG__projectControls {
  gap: .5rem;
  display: flex;
}

.FilterBar-module__MDuvGG__projectControls select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.FilterBar-module__MDuvGG__iconBtn {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff1a;
  border-left: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  align-items: center;
  padding: 0 .75rem;
  display: flex;
}

.FilterBar-module__MDuvGG__iconBtn:hover {
  color: #fff;
  background: #fff3;
}

.FilterBar-module__MDuvGG__filterGroup select, .FilterBar-module__MDuvGG__filterGroup input {
  border: 1px solid var(--border-subtle);
  color: #fff;
  background: #0f172a80;
  border-radius: 8px;
  outline: none;
  min-width: 150px;
  padding: .5rem 1rem;
  font-size: .9rem;
}

.FilterBar-module__MDuvGG__filterGroup select:focus, .FilterBar-module__MDuvGG__filterGroup input:focus {
  border-color: var(--text-accent);
}

.FilterBar-module__MDuvGG__btnPrimary, .FilterBar-module__MDuvGG__btnSecondary {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.FilterBar-module__MDuvGG__btnPrimary {
  background: var(--text-accent);
  color: #000;
}

.FilterBar-module__MDuvGG__btnPrimary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.FilterBar-module__MDuvGG__btnSecondary {
  color: #fff;
  border: 1px solid var(--border-subtle);
  background: #ffffff0d;
}

.FilterBar-module__MDuvGG__btnSecondary:hover {
  background: #ffffff1a;
}

@media (max-width: 768px) {
  .FilterBar-module__MDuvGG__bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .FilterBar-module__MDuvGG__left, .FilterBar-module__MDuvGG__right {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    width: 100%;
  }

  .FilterBar-module__MDuvGG__filterGroup, .FilterBar-module__MDuvGG__filterGroup select, .FilterBar-module__MDuvGG__filterGroup input, .FilterBar-module__MDuvGG__projectControls {
    width: 100%;
  }

  .FilterBar-module__MDuvGG__btnPrimary, .FilterBar-module__MDuvGG__btnSecondary {
    justify-content: center;
  }
}

/* [project]/src/components/transactions/AddTransactionForm.module.css [app-client] (css) */
.AddTransactionForm-module__r1FgFG__overlay {
  z-index: 100;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #000000b3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.AddTransactionForm-module__r1FgFG__modal {
  background: #1e293b;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px #00000080, 0 10px 10px -5px #0000004d;
}

.AddTransactionForm-module__r1FgFG__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.AddTransactionForm-module__r1FgFG__closeBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
}

.AddTransactionForm-module__r1FgFG__closeBtn:hover {
  color: #fff;
}

.AddTransactionForm-module__r1FgFG__form {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.AddTransactionForm-module__r1FgFG__row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.AddTransactionForm-module__r1FgFG__group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.AddTransactionForm-module__r1FgFG__group label {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
}

.AddTransactionForm-module__r1FgFG__group input, .AddTransactionForm-module__r1FgFG__group select {
  border: 1px solid var(--border-subtle);
  color: #fff;
  background: #0f172a99;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: .75rem;
}

.AddTransactionForm-module__r1FgFG__group input:focus, .AddTransactionForm-module__r1FgFG__group select:focus {
  border-color: var(--text-accent);
}

.AddTransactionForm-module__r1FgFG__toggle {
  background: #0f172a99;
  border-radius: 8px;
  padding: 2px;
  display: flex;
}

.AddTransactionForm-module__r1FgFG__toggle button {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  flex: 1;
  padding: .5rem;
  font-weight: 600;
  transition: all .2s;
}

.AddTransactionForm-module__r1FgFG__activeExpense {
  background: var(--color-expense) !important;
  color: #fff !important;
}

.AddTransactionForm-module__r1FgFG__activeIncome {
  background: var(--color-income) !important;
  color: #fff !important;
}

.AddTransactionForm-module__r1FgFG__inputIconWrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.AddTransactionForm-module__r1FgFG__inputIcon {
  pointer-events: none;
  color: var(--text-secondary);
  position: absolute;
  right: 1rem;
}

.AddTransactionForm-module__r1FgFG__submitBtn {
  background: var(--text-accent);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: bold;
  transition: opacity .2s;
  display: flex;
}

.AddTransactionForm-module__r1FgFG__submitBtn:hover {
  opacity: .9;
}

.AddTransactionForm-module__r1FgFG__disabledInput {
  cursor: not-allowed;
  color: var(--text-secondary) !important;
  background: #ffffff0d !important;
}

/* [project]/src/components/auth/Login.module.css [app-client] (css) */
.Login-module__zfThaG__container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
}

.Login-module__zfThaG__card {
  border: 1px solid var(--border-highlight);
  background: #1e293bcc;
  width: 100%;
  max-width: 400px;
  padding: 3rem 2rem;
  box-shadow: 0 0 40px #00000080;
}

.Login-module__zfThaG__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.Login-module__zfThaG__header h1 {
  color: var(--text-accent);
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.Login-module__zfThaG__header p {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
}

.Login-module__zfThaG__form {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.Login-module__zfThaG__group label {
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: .8rem;
  font-weight: 600;
  display: block;
}

.Login-module__zfThaG__userGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  display: grid;
}

.Login-module__zfThaG__userBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #0000;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  transition: all .2s;
  display: flex;
}

.Login-module__zfThaG__userBtn:hover {
  color: #fff;
  background: #ffffff1a;
}

.Login-module__zfThaG__selected {
  border-color: var(--text-accent);
  color: var(--text-accent);
  background: #fbbf241a;
}

.Login-module__zfThaG__inputWrapper {
  position: relative;
}

.Login-module__zfThaG__inputWrapper input {
  border: 1px solid var(--border-subtle);
  color: #fff;
  background: #0f172acc;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 1rem 1rem 1rem 2.5rem;
  font-size: 1rem;
}

.Login-module__zfThaG__inputWrapper input:focus {
  border-color: var(--text-accent);
}

.Login-module__zfThaG__icon {
  color: var(--text-secondary);
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.Login-module__zfThaG__loginBtn {
  background: var(--text-accent);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem;
  font-weight: 700;
  transition: transform .2s;
  display: flex;
}

.Login-module__zfThaG__loginBtn:hover {
  transform: translateY(-1px);
}

.Login-module__zfThaG__error {
  color: var(--color-expense);
  text-align: center;
  background: #f871711a;
  border-radius: 4px;
  padding: .5rem;
  font-size: .9rem;
}

/* [project]/src/components/projects/ProjectManager.module.css [app-client] (css) */
.ProjectManager-module__0_RMRW__overlay {
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #000c;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.ProjectManager-module__0_RMRW__modal {
  background: #1e293b;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  padding: 2rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__header {
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__closeBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
}

.ProjectManager-module__0_RMRW__content {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow-y: auto;
}

.ProjectManager-module__0_RMRW__list {
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__projectItem {
  background: #ffffff08;
  border: 1px solid #0000;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  transition: all .2s;
  display: flex;
}

.ProjectManager-module__0_RMRW__projectItem:hover {
  background: #ffffff14;
  border-color: #ffffff1a;
}

.ProjectManager-module__0_RMRW__projectMainInfo {
  cursor: pointer;
  flex: 1;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__projectIcon {
  color: var(--text-accent);
  background: #fbbf241a;
  border-radius: 8px;
  padding: .5rem;
}

.ProjectManager-module__0_RMRW__projectInfo {
  flex-direction: column;
  display: flex;
}

.ProjectManager-module__0_RMRW__projectName {
  color: #fff;
  font-weight: 600;
}

.ProjectManager-module__0_RMRW__projectMeta {
  color: var(--text-secondary);
  font-size: .75rem;
}

.ProjectManager-module__0_RMRW__itemActions {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__actionBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #0000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .2s;
  display: flex;
}

.ProjectManager-module__0_RMRW__actionBtn:hover {
  color: #fff;
  background: #ffffff1a;
}

.ProjectManager-module__0_RMRW__btnEdit:hover {
  color: var(--text-accent);
  border-color: var(--text-accent);
}

.ProjectManager-module__0_RMRW__btnDelete:hover {
  color: var(--color-expense);
  border-color: var(--color-expense);
}

.ProjectManager-module__0_RMRW__addBtn {
  border: 1px dashed var(--border-subtle);
  width: 100%;
  color: var(--text-secondary);
  cursor: pointer;
  background: #ffffff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding: 1rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.ProjectManager-module__0_RMRW__addBtn:hover {
  color: #fff;
  background: #ffffff26;
  border-color: #fff;
}

.ProjectManager-module__0_RMRW__formPanel {
  background: #0003;
  border-radius: 12px;
  padding: 1.5rem;
}

.ProjectManager-module__0_RMRW__formPanel h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.ProjectManager-module__0_RMRW__group {
  margin-bottom: 1rem;
}

.ProjectManager-module__0_RMRW__group label {
  color: var(--text-secondary);
  margin-bottom: .5rem;
  font-size: .85rem;
  display: block;
}

.ProjectManager-module__0_RMRW__group input {
  border: 1px solid var(--border-subtle);
  color: #fff;
  background: #0000004d;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: .75rem;
}

.ProjectManager-module__0_RMRW__group input:focus {
  border-color: var(--text-accent);
}

.ProjectManager-module__0_RMRW__actions {
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.ProjectManager-module__0_RMRW__btnCancel, .ProjectManager-module__0_RMRW__btnSubmit {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  font-weight: 600;
  display: flex;
}

.ProjectManager-module__0_RMRW__btnCancel {
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  background: none;
}

.ProjectManager-module__0_RMRW__btnSubmit {
  background: var(--text-accent);
  color: #000;
}

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