/* client/src/styles/branding.css */
:root {
  --brand-navy: #06142E;
  --brand-silver: #C4CED8;
  --brand-silver-dim: #8A95A5;
  --brand-white: #FFFFFF;
  --bg-app: #020617;
  --bg-panel: #0F172A;
  --bg-input: #1E293B;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  --text-danger: #EF4444;
  --border-subtle: #1E293B;
  --border-focus: #C4CED8;
  --btn-primary-bg: #C4CED8;
  --btn-primary-text: #06142E;
  --btn-danger-bg: #EF4444;
  --btn-danger-text: #FFFFFF;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #C4CED8;
  --btn-secondary-border: #334155;
  --status-profit: #10B981;
  --status-loss: #EF4444;
  --status-warning: #F59E0B;
}
body {
  background-color: var(--bg-app);
  color: var(--text-primary);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.logo-text {
  color: var(--brand-silver);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-glow {
  filter: drop-shadow(0 0 3px #C4CED8) drop-shadow(0 0 3px #C4CED8);
}
.card {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  filter: brightness(1.5);
}
.btn-danger {
  background-color: var(--btn-danger-bg);
  color: var(--btn-danger-text);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-danger:hover {
  filter: brightness(1.5);
}
input,
select,
textarea {
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 10px 12px;
  border-radius: 6px;
  outline: none;
}
input:focus {
  border-color: var(--border-focus);
}
.text-profit {
  color: var(--status-profit);
}
.text-loss {
  color: var(--status-loss);
}

/* client/src/styles/main.css */
html,
body {
  font-size: 16px;
  font-family: Arial, sans-serif;
}
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.navbar a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.transaction-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.transaction-table th {
  text-align: left;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.transaction-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.flex-gap {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--brand-silver);
  font-weight: 700;
}

/* client/src/styles/landing.css */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background:
    radial-gradient(
      circle at top,
      #1e293b 0%,
      var(--bg-app) 70%);
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background:
    linear-gradient(
      to right,
      #fff,
      var(--brand-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 1.1;
}
.hero p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-image-container {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.features-section {
  padding: 80px 20px;
  background-color: var(--bg-app);
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-panel);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 206, 216, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--brand-silver);
}
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background:
    linear-gradient(
      180deg,
      var(--bg-app) 0%,
      #0f172a 100%);
  border-top: 1px solid var(--border-subtle);
}

/* client/src/styles/helper.css */
.hidden {
  display: none !important;
}
.flex,
.d-flex {
  display: flex;
}
.fw,
.fw-wrap {
  flex-wrap: wrap;
}
.ac {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fr,
.frow {
  display: flex;
  flex-direction: row;
}
.fc,
.fcol {
  display: flex;
  flex-direction: column;
}
.fr.center {
  justify-content: center;
}
.fr.vertCenter {
  align-items: center;
}
.fr.vertEnd {
  align-items: flex-end;
}
.fc.center {
  align-items: center;
}
.fc.vertCenter {
  justify-content: center;
}
.fc.vertEnd {
  justify-content: flex-end;
}
.fe {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.g20 {
  gap: 20px;
}
.g10,
.gap10 {
  gap: 10px;
}
.g5,
.gap5 {
  gap: 5px;
}
.fb50 {
  flex-basis: 50%;
}
.p5box {
  padding: 5px;
  box-sizing: border-box;
}
.p10box,
.p10 {
  padding: 10px;
  box-sizing: border-box;
}
.disabled {
  cursor: not-allowed !important;
}
.fullyDisabled {
  pointer-events: none !important;
  background-color: #efefef !important;
}
.spaceBetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.spaceBetweenVert {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.pullRight {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.pullLeft {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.fstart {
  display: flex;
  justify-content: flex-start;
}
.fend {
  display: flex;
  justify-content: flex-end;
}
.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.maxWH {
  width: 100%;
  height: 100%;
}
.scroll {
  max-height: 100%;
  overflow: auto;
}
.f1 {
  flex: 1;
}
.f2 {
  flex: 2;
}
.f3 {
  flex: 3;
}
.f4 {
  flex: 4;
}
.f5 {
  flex: 5;
}
.f6 {
  flex: 6;
}
.f7 {
  flex: 7;
}
.f8 {
  flex: 8;
}
.f9 {
  flex: 9;
}
.f10 {
  flex: 10;
}
.textOverflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pointer {
  cursor: pointer;
}
.nobm {
  margin-bottom: 0px !important;
}
.br5 {
  border-radius: 5px;
}
.br6 {
  border-radius: 6px;
}
.br10 {
  border-radius: 10px;
}
.br20 {
  border-radius: 20px;
}
.rc {
  align-items: center;
}
.cc {
  justify-content: center;
}

/* client/src/styles/dashboard.css */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.action-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
}
.action-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-silver);
  background-color: #162032;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}
.action-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(196, 206, 216, 0.1));
}
.action-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.action-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
/*# sourceMappingURL=bundle.css.map */
