/* src/styles.scss */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  background: #eef2f7;
  color: #061328;
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
  max-width: 100%;
}
button {
  cursor: pointer;
}
.buy,
.green,
.profit {
  color: #00a63e;
  font-weight: 800;
}
.red {
  color: #dc2626;
  font-weight: 800;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(14px, 3vw, 24px);
  margin-bottom: clamp(14px, 3vw, 24px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid #d9e2ef;
  max-width: 100%;
  overflow: hidden;
}
.card h1,
.card h2 {
  margin-top: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  word-break: break-word;
}
.table-wrapper,
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  white-space: nowrap;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}
th {
  background: #f8fafc;
}
.primary-btn,
.small-btn {
  border: 0;
  background: #0f172a;
  color: white;
  border-radius: 8px;
  padding: 9px 12px;
}
.secondary-btn {
  border: 0;
  background: #334155;
  color: white;
  border-radius: 8px;
  padding: 9px 12px;
}
.success {
  color: #047857;
}
.error {
  color: #991b1b;
}
.notice {
  background: #eef4ff;
  border-radius: 10px;
  padding: 12px;
  margin: 12px 0;
  word-break: break-word;
}
.notice.success {
  background: #ecfdf5;
}
.notice.error {
  background: #fef2f2;
}
@media (max-width: 768px) {
  .primary-btn,
  .secondary-btn,
  .small-btn {
    width: 100%;
    min-height: 44px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
