/* [project]/wlmsfrontend/src/views/components/layout/Header.module.css [app-client] (css) */
.Header-module__v9Db1q__header {
  background: var(--wz-card);
  border-bottom: 1px solid var(--wz-border);
  z-index: 150;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 16px;
  display: flex;
  position: sticky;
  top: 0;
}

.Header-module__v9Db1q__menuBtn {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  padding: 6px 4px;
  display: none;
}

@media (max-width: 767px) {
  .Header-module__v9Db1q__menuBtn {
    display: flex;
  }
}

.Header-module__v9Db1q__menuBtn span {
  background: #64748b;
  border-radius: 2px;
  width: 20px;
  height: 2px;
  display: block;
}

.Header-module__v9Db1q__searchWrap {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.Header-module__v9Db1q__searchIcon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.Header-module__v9Db1q__searchInput {
  border: 1px solid var(--wz-border);
  width: 100%;
  color: var(--wz-text);
  background: #f8fafc;
  border-radius: 8px;
  outline: none;
  padding: 9px 14px 9px 38px;
  font-size: 13px;
}

.Header-module__v9Db1q__searchInput::placeholder {
  color: #94a3b8;
}

.Header-module__v9Db1q__searchInput:focus {
  border-color: var(--wz-primary);
  background: #fff;
}

.Header-module__v9Db1q__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  display: flex;
}

@media (max-width: 480px) {
  .Header-module__v9Db1q__langWrap, .Header-module__v9Db1q__iconBtn:not(:last-of-type) {
    display: none;
  }

  .Header-module__v9Db1q__searchWrap {
    max-width: none;
  }
}

.Header-module__v9Db1q__langWrap {
  border: 1px solid var(--wz-border);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  display: flex;
}

.Header-module__v9Db1q__langSelect {
  color: var(--wz-text-muted);
  cursor: pointer;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
}

.Header-module__v9Db1q__iconBtn {
  border: 1px solid var(--wz-border);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: relative;
}

.Header-module__v9Db1q__notifBadge {
  color: #fff;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -4px;
  right: -4px;
}

.Header-module__v9Db1q__avatarWrap {
  cursor: pointer;
  align-items: center;
  gap: 6px;
  display: flex;
}

.Header-module__v9Db1q__avatar {
  color: #fff;
  background: linear-gradient(135deg, #635bff, #10b981);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

/* [project]/wlmsfrontend/src/views/components/wallet/WalletView.module.css [app-client] (css) */
.WalletView-module__JtWnXG__page {
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  display: flex;
}

.WalletView-module__JtWnXG__pageHeading {
  margin-bottom: 0;
}

.WalletView-module__JtWnXG__pageTitle {
  color: var(--wz-text);
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
}

.WalletView-module__JtWnXG__pageSubtitle {
  color: var(--wz-text-muted);
  margin: 0;
  font-size: 13px;
}

.WalletView-module__JtWnXG__walletLayout {
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.WalletView-module__JtWnXG__tabSidebar {
  background: var(--wz-card);
  border-radius: 14px;
  flex-shrink: 0;
  width: 260px;
  overflow: hidden;
  box-shadow: 0 1px 4px #00000012;
}

.WalletView-module__JtWnXG__tabItem {
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  transition: background .15s;
  display: flex;
}

.WalletView-module__JtWnXG__tabItem:hover:not(.WalletView-module__JtWnXG__tabItemActive) {
  background: #f8fafc;
}

.WalletView-module__JtWnXG__tabItemActive {
  background: #2563eb;
}

.WalletView-module__JtWnXG__tabItemIcon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.WalletView-module__JtWnXG__tabItemLabel {
  color: var(--wz-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.WalletView-module__JtWnXG__tabItemActive .WalletView-module__JtWnXG__tabItemLabel {
  color: #fff;
}

.WalletView-module__JtWnXG__tabPanel {
  flex: 1;
  min-width: 0;
}

.WalletView-module__JtWnXG__tabContent {
  background: var(--wz-card);
  border-radius: 14px;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px;
  display: flex;
  box-shadow: 0 1px 4px #00000012;
}

.WalletView-module__JtWnXG__cardHeader {
  border-bottom: 1px solid var(--wz-border);
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  display: flex;
}

.WalletView-module__JtWnXG__cardTitle {
  color: var(--wz-text);
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
}

.WalletView-module__JtWnXG__cardSubtitle {
  color: var(--wz-text-muted);
  margin: 0;
  font-size: 13px;
}

.WalletView-module__JtWnXG__cardHeaderIcon {
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}

.WalletView-module__JtWnXG__formGroup {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.WalletView-module__JtWnXG__label {
  color: var(--wz-text);
  font-size: 13px;
  font-weight: 600;
}

.WalletView-module__JtWnXG__inputWrap {
  position: relative;
}

.WalletView-module__JtWnXG__input {
  border: 1.5px solid var(--wz-border);
  width: 100%;
  color: var(--wz-text);
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  outline: none;
  padding: 12px 44px 12px 16px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s;
}

.WalletView-module__JtWnXG__input:focus {
  background: #f8fafc;
  border-color: #2563eb;
}

.WalletView-module__JtWnXG__input::placeholder {
  color: #94a3b8;
}

.WalletView-module__JtWnXG__input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.WalletView-module__JtWnXG__input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.WalletView-module__JtWnXG__inputReadonly {
  color: var(--wz-text-muted);
  cursor: not-allowed;
  background: #f1f5f9;
}

.WalletView-module__JtWnXG__inputIcon {
  pointer-events: none;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.WalletView-module__JtWnXG__verifiedLine {
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.WalletView-module__JtWnXG__greenDot {
  background: #059669;
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.WalletView-module__JtWnXG__verifiedName {
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}

.WalletView-module__JtWnXG__balanceLine {
  color: var(--wz-text-muted);
  border: 1px solid var(--wz-border);
  background: #f8fafc;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
}

.WalletView-module__JtWnXG__balanceLine strong {
  color: var(--wz-text);
}

.WalletView-module__JtWnXG__balanceGreen {
  color: #059669;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.WalletView-module__JtWnXG__balanceGreen strong {
  color: #059669;
}

.WalletView-module__JtWnXG__balanceRed {
  color: #dc2626;
  background: #fef2f2;
  border-color: #fecaca;
}

.WalletView-module__JtWnXG__balanceText {
  font-size: 13px;
}

.WalletView-module__JtWnXG__primaryBtn {
  color: #fff;
  cursor: pointer;
  background: #2563eb;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
}

.WalletView-module__JtWnXG__primaryBtn:hover:not(:disabled) {
  background: #1d4ed8;
}

.WalletView-module__JtWnXG__primaryBtnDisabled {
  color: #94a3b8;
  cursor: not-allowed;
  background: #cbd5e1;
}

.WalletView-module__JtWnXG__modalOverlay {
  z-index: 200;
  background: #0f172a73;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.WalletView-module__JtWnXG__modal {
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  padding: 36px 32px 28px;
  display: flex;
  position: relative;
  box-shadow: 0 20px 60px #0000002e;
}

.WalletView-module__JtWnXG__modalClose {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background .15s;
  display: flex;
  position: absolute;
  top: 14px;
  right: 16px;
}

.WalletView-module__JtWnXG__modalClose:hover {
  background: #f1f5f9;
}

.WalletView-module__JtWnXG__successCircleWrap {
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  margin: 8px 0 4px;
  display: flex;
  position: relative;
}

.WalletView-module__JtWnXG__sparkle {
  position: absolute;
}

.WalletView-module__JtWnXG__successCircle {
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  display: flex;
  box-shadow: 0 8px 24px #05966959;
}

.WalletView-module__JtWnXG__successTitle {
  color: #059669;
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.WalletView-module__JtWnXG__modalDivider {
  align-items: center;
  gap: 0;
  width: 100%;
  margin: -4px 0;
  display: flex;
}

.WalletView-module__JtWnXG__modalDividerLine {
  background: var(--wz-border);
  flex: 1;
  height: 1.5px;
}

.WalletView-module__JtWnXG__modalDividerDot {
  background: #059669;
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin: 0 -5px;
}

.WalletView-module__JtWnXG__successMsg {
  color: var(--wz-text-muted);
  text-align: center;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.WalletView-module__JtWnXG__successName {
  color: #059669;
  font-weight: 700;
}

.WalletView-module__JtWnXG__filterRow {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.WalletView-module__JtWnXG__filterDropdown {
  background: var(--wz-card);
  border: 1.5px solid var(--wz-border);
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  transition: border-color .15s;
  display: flex;
}

.WalletView-module__JtWnXG__filterDropdown:focus-within {
  border-color: #2563eb;
}

.WalletView-module__JtWnXG__filterLabel {
  color: var(--wz-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
}

.WalletView-module__JtWnXG__filterSelect {
  color: var(--wz-text);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

.WalletView-module__JtWnXG__txList {
  background: none;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  display: flex;
}

.WalletView-module__JtWnXG__txItem {
  background: var(--wz-card);
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  display: flex;
  box-shadow: 0 1px 3px #0000000f;
}

.WalletView-module__JtWnXG__txIconWrap {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}

.WalletView-module__JtWnXG__txInfo {
  flex: 1;
  min-width: 0;
}

.WalletView-module__JtWnXG__txName {
  color: var(--wz-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  font-size: 13.5px;
  font-weight: 700;
  overflow: hidden;
}

.WalletView-module__JtWnXG__txFrom {
  color: var(--wz-text-muted);
  margin-bottom: 3px;
  font-size: 12px;
}

.WalletView-module__JtWnXG__txFromId {
  color: var(--wz-text);
  font-weight: 600;
}

.WalletView-module__JtWnXG__txDate {
  color: #94a3b8;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  display: flex;
}

.WalletView-module__JtWnXG__txAmt {
  color: #059669;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .WalletView-module__JtWnXG__walletLayout {
    flex-direction: column;
  }

  .WalletView-module__JtWnXG__tabSidebar {
    border-radius: 12px;
    flex-direction: row;
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .WalletView-module__JtWnXG__tabItem {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-width: 110px;
    padding: 14px 16px;
    border-bottom: none !important;
  }

  .WalletView-module__JtWnXG__tabItemIcon {
    width: 32px;
    height: 32px;
  }

  .WalletView-module__JtWnXG__tabItemLabel {
    font-size: 12px;
  }

  .WalletView-module__JtWnXG__filterRow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .WalletView-module__JtWnXG__page {
    padding: 16px 14px;
  }

  .WalletView-module__JtWnXG__tabContent {
    padding: 18px 16px;
  }

  .WalletView-module__JtWnXG__modal {
    padding: 28px 20px 22px;
  }
}

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