/* ==========================================
   DESIGN SYSTEM - TASTE SPECIFICATION
   Dark Tech Glassmorphic Theme
   Variance: 6 | Motion: 5 | Density: 6
   ========================================== */

:root {
  /* Color Palette */
  --bg-app: #030712;
  --bg-gradient-start: #0f172a;
  --bg-gradient-end: #020617;
  
  --card-bg: rgba(15, 23, 42, 0.45);
  --card-border: rgba(255, 255, 255, 0.05);
  --card-glow: rgba(59, 130, 246, 0.08);

  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.35);

  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  --warning: #f59e0b;
  --warning-glow: rgba(245, 158, 11, 0.15);
  --danger: #ef4444;
  --danger-glow: rgba(239, 68, 68, 0.15);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Fonts */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-card: 12px;
  --radius-input: 8px;
  --radius-badge: 6px;
}

/* Reset & Global Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-app);
  background-image: radial-gradient(at top, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Main Layout */
.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header UI */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 15px var(--accent-glow);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  background: var(--text-primary);
  border-radius: 4px;
  opacity: 0.8;
}

.title-text h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-text .subtitle {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Connection Status Badge */
.connection-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-badge);
  border: 1px solid var(--card-border);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.online {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-glow 2s infinite;
}

.status-dot.offline {
  background-color: var(--danger);
  box-shadow: 0 0 8px var(--danger);
}

/* Button & Actions UI */
button {
  cursor: pointer;
  border: none;
  outline: none;
}

.action-btn, .icon-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-input);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-secondary);
}

.action-btn {
  padding: 12px 24px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background: var(--danger);
  color: var(--text-primary);
  box-shadow: 0 0 15px var(--danger-glow);
  transform: translateY(-1px);
}

.btn-danger:active {
  transform: scale(0.98);
}

/* Glass Card Definition */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Visual Warnings */
.glass-card.card-alert {
  border-color: var(--danger);
  box-shadow: 0 8px 32px var(--danger-glow);
}

/* Layout Main Content */
.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Grid Top metrics */
.metrics-grid {
  display: grid;
  grid-template-cols: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-cols: repeat(3, minmax(0, 1fr));
  }
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 16px 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Badges */
.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-badge);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-info {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.2);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #fde047;
  border-color: rgba(245, 158, 11, 0.2);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.2);
}

/* Metric Display Values */
.price-value-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0;
}

.price-display {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}

.price-change-percent {
  font-size: 15px;
  font-weight: 600;
}

.price-change-percent.positive {
  color: var(--success);
}

.price-change-percent.negative {
  color: var(--danger);
}

.card-footer-metrics {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 10px;
  margin-top: 12px;
}

/* Flags Layout */
.flags-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 8px;
}

.flag-item {
  flex: 1 1 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.flag-label {
  color: var(--text-secondary);
}

.flag-status {
  padding: 4px 8px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.flag-status.executed {
  background: var(--success-glow);
  color: var(--success);
  border-color: rgba(16, 185, 129, 0.2);
}

.flag-status.pending {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border-color: var(--card-border);
}

/* Row Layout: Chart + Rules */
.layout-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .layout-row {
    flex-direction: row;
  }
}

.flex-grow {
  flex: 1;
}

.chart-container {
  min-height: 350px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 12px;
}

.chart-wrapper {
  position: relative;
  height: 280px;
  width: 100%;
}

/* Rules Section Layout */
.strategy-panel {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .strategy-panel {
    width: 380px;
  }
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.rule-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.rule-box:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.rule-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.rule-title-row h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.rule-box.active .indicator-dot {
  background-color: var(--warning);
  box-shadow: 0 0 6px var(--warning);
}

.rule-box.triggered .indicator-dot {
  background-color: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.rule-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.console-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.console-actions button {
  width: 100%;
}

/* History logs table */
.logs-section {
  display: flex;
  flex-direction: column;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

th {
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.1);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.empty-row td {
  text-align: center;
  color: var(--text-muted);
  padding: 30px 0;
  font-style: italic;
}

/* Modal UI Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  margin: 16px;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  animation: slide-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  background: transparent;
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1;
}

.close-btn:hover {
  color: var(--text-primary);
}

.settings-hint {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-sans);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), inset 0 2px 4px rgba(0, 0, 0, 0.2);
  outline: none;
  background: rgba(15, 23, 42, 0.9);
}

.form-group input[readonly] {
  background: rgba(255, 255, 255, 0.02) !important;
  color: var(--text-muted) !important;
  border-color: rgba(255, 255, 255, 0.04) !important;
  cursor: not-allowed;
  box-shadow: none;
}

.settings-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.settings-actions button {
  width: 100%;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Transactions & Forms Custom Styles */
/* Transactions & Forms Custom Styles */
.modal-body select {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  font-family: var(--font-sans);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-body select:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.modal-body select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), inset 0 2px 4px rgba(0, 0, 0, 0.2);
  background: rgba(15, 23, 42, 0.9);
}

.modal-body select option {
  background-color: #0f172a;
  color: var(--text-primary);
  padding: 12px;
}

/* Modal Primary Button Special Styling */
#btn-save-trade {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%) !important;
  color: var(--text-primary);
  border: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px;
  border-radius: var(--radius-input);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#btn-save-trade:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #2563eb 100%) !important;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

#btn-save-trade:active {
  transform: translateY(1px);
}

.summary-item {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: var(--radius-card);
  padding: 14px 18px !important;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.summary-item:hover {
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.btn-edit-trade {
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.btn-edit-trade:hover {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.btn-delete-trade {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.btn-delete-trade:hover {
  background: var(--danger);
  color: var(--text-primary);
  border-color: var(--danger);
  box-shadow: 0 0 8px var(--danger-glow);
}

/* Timeframe Selection Buttons */
.timeframe-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.timeframe-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.timeframe-btn.active {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Ticker Selection Buttons */
.ticker-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.ticker-btn:hover {
  color: var(--text-primary);
}

.ticker-btn.active {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 2px 8px var(--accent-glow);
}

/* Responsiveness for Chart Controls */
@media (max-width: 640px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  .chart-controls-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Holdings Summary Grid Layout (Fluid 5-column layout) */
.holding-summary-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 540px) {
  .holding-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .holding-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .holding-summary-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Toast Notification System */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-message {
  pointer-events: auto;
  min-width: 300px;
  max-width: 450px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-message.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-message.success {
  border-left: 3px solid var(--success);
}

.toast-message.error {
  border-left: 3px solid var(--danger);
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.toast-message.success .toast-icon {
  background: var(--success-glow);
  color: var(--success);
}

.toast-message.error .toast-icon {
  background: var(--danger-glow);
  color: var(--danger);
}

.toast-content {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
  flex-grow: 1;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: var(--text-primary);
}

/* Tactile Press Animations for Buttons */
.action-btn:active,
.icon-btn:active,
.close-btn:active,
button:active {
  transform: translateY(1px) scale(0.98) !important;
}

/* Card Hover Float & Lighting Effects */
.metric-card,
.glass-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.metric-card:hover,
.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Responsive Form Rows for Modal Layouts */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 580px) {
  .form-row,
  .form-row-3col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Live Price Badges */
.live-price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
}

.live-price-tag.price-neutral {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-price-tag.price-up {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-price-tag.price-down {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}



