/* ═══════════════════════════════════════════════════════════════
   PROFESSIONAL UI SYSTEM - Satılabilir Uygulama İçin
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* PRIMARY COLORS */
  --primary: #1a73e8;
  --primary-light: #4a90e2;
  --primary-dark: #1557b0;

  /* SECONDARY COLORS */
  --success: #34a853;
  --success-light: #5dbe67;
  --success-dark: #2d8e47;

  /* STATUS COLORS */
  --danger: #d33b27;
  --danger-light: #e74c3c;
  --danger-dark: #c0392b;

  --warning: #f9a825;
  --warning-light: #f5b041;
  --warning-dark: #e67e22;

  --info: #4a90e2;
  --info-light: #5ba3f5;
  --info-dark: #3b73c7;

  /* GRAYSCALE */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* SPACING */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;

  /* BORDER RADIUS */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* SHADOWS */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* TRANSITIONS */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE (Default)
   ═══════════════════════════════════════════════════════════════ */

html.light-mode {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-tertiary: #9ca3af;

  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --border-dark: #d1d5db;
}

/* ═══════════════════════════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════════════════════════ */

html.dark-mode {
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #252d3d;

  --text-primary: #f3f4f6;
  --text-secondary: #d1d5db;
  --text-tertiary: #9ca3af;

  --border: #374151;
  --border-light: #4b5563;
  --border-dark: #1f2937;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON SYSTEM - Profesyonel ve Tutarlı
   ═══════════════════════════════════════════════════════════════ */

button, a.btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);

  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-md);

  font-family: inherit;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;

  transition: all var(--transition-fast);
  user-select: none;
}

/* Button Reset - Override link colors (except secondary and ghost) */
a.btn, a.btn-primary, a.btn-success, a.btn-danger,
a.btn-info, a.btn-warning {
  color: white !important;
  text-decoration: none;
}

a.btn:hover, a.btn-primary:hover, a.btn-success:hover, a.btn-danger:hover,
a.btn-info:hover, a.btn-warning:hover {
  text-decoration: none;
  color: white !important;
}

/* Secondary button - visible gray with clear contrast */
a.btn-secondary {
  text-decoration: none;
  color: var(--text-primary) !important;
}

a.btn-secondary:hover {
  text-decoration: none;
  color: var(--text-primary) !important;
}

.btn-secondary:not(:disabled) {
  background: #e5e7eb !important;
  color: #1f2937 !important;
  border: 1px solid #d1d5db !important;
}

.btn-secondary:not(:disabled):hover {
  background: #d1d5db !important;
  color: #111827 !important;
}

html.dark-mode .btn-secondary:not(:disabled) {
  background: #374151 !important;
  color: #f3f4f6 !important;
  border: 1px solid #4b5563 !important;
}

html.dark-mode .btn-secondary:not(:disabled):hover {
  background: #4b5563 !important;
  color: #ffffff !important;
}

/* Ghost button - keep dark text color */
a.btn-ghost {
  text-decoration: none;
  color: var(--text-primary) !important;
}

a.btn-ghost:hover {
  text-decoration: none;
  color: var(--text-primary) !important;
}

/* Primary Button (Mavi - Main CTA) */
.btn-primary, button.btn-primary, a.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover, button.btn-primary:hover, a.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:active, button.btn-primary:active, a.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary:disabled, button.btn-primary:disabled, a.btn-primary:disabled {
  background: var(--gray-300);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Success Button (Yeşil - Kaydet, Ekle) */
.btn-success, button.btn-success, a.btn-success {
  background: var(--success);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-success:hover, button.btn-success:hover, a.btn-success:hover {
  background: var(--success-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-success:active, button.btn-success:active, a.btn-success:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Danger Button (Kırmızı - Sil) */
.btn-danger, button.btn-danger, a.btn-danger {
  background: var(--danger);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-danger:hover, button.btn-danger:hover, a.btn-danger:hover {
  background: var(--danger-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-danger:active, button.btn-danger:active, a.btn-danger:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Secondary Button (Gri - İkincil işlem) */
.btn-secondary, button.btn-secondary, a.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, button.btn-secondary:hover, a.btn-secondary:hover {
  background: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary:active, button.btn-secondary:active, a.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Info Button (Mavi - Bilgi) */
.btn-info, button.btn-info, a.btn-info {
  background: var(--info);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-info:hover, button.btn-info:hover, a.btn-info:hover {
  background: var(--info-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-info:active, button.btn-info:active, a.btn-info:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Warning Button (Sarı - Uyarı) */
.btn-warning, button.btn-warning, a.btn-warning {
  background: var(--warning);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-warning:hover, button.btn-warning:hover, a.btn-warning:hover {
  background: var(--warning-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-warning:active, button.btn-warning:active, a.btn-warning:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Ghost Button (Outline style - Filter buttons) */
.btn-ghost, button.btn-ghost, a.btn-ghost {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover, button.btn-ghost:hover, a.btn-ghost:hover {
  background: var(--border);
  border-color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

html.dark-mode .btn-ghost, html.dark-mode button.btn-ghost, html.dark-mode a.btn-ghost {
  background: #374151;
  border-color: #4b5563;
}

html.dark-mode .btn-ghost:hover, html.dark-mode button.btn-ghost:hover, html.dark-mode a.btn-ghost:hover {
  background: #4b5563;
  border-color: #6b7280;
}

/* Button Sizes */
.btn-sm, button.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg, button.btn-lg {
  padding: 12px 20px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   BADGE & STATUS SYSTEM - Tutarlı Durumlar
   ═══════════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);

  padding: 4px 10px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;

  border: 1px solid transparent;
}

/* Status: Active/Success */
.badge-active, .badge-success {
  background: rgba(52, 168, 83, 0.1);
  color: var(--success-dark);
  border-color: var(--success);
}

html.dark-mode .badge-active, html.dark-mode .badge-success {
  background: rgba(52, 168, 83, 0.15);
  color: #5dbe67;
}

/* Status: Inactive/Danger */
.badge-inactive, .badge-danger, .badge-error {
  background: rgba(211, 59, 39, 0.1);
  color: var(--danger-dark);
  border-color: var(--danger);
}

html.dark-mode .badge-inactive, html.dark-mode .badge-danger, html.dark-mode .badge-error {
  background: rgba(211, 59, 39, 0.15);
  color: #e74c3c;
}

/* Status: Warning */
.badge-warning {
  background: rgba(249, 168, 37, 0.1);
  color: var(--warning-dark);
  border-color: var(--warning);
}

html.dark-mode .badge-warning {
  background: rgba(249, 168, 37, 0.15);
  color: #f5b041;
}

/* Status: Info */
.badge-info {
  background: rgba(74, 144, 226, 0.1);
  color: var(--info-dark);
  border-color: var(--info);
}

html.dark-mode .badge-info {
  background: rgba(74, 144, 226, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   API KEY BOX STYLING
   ═══════════════════════════════════════════════════════════════ */

.api-key-box {
  background: var(--bg-primary) !important;
  padding: 1.2rem !important;
  border-radius: 8px !important;
  border-left: 4px solid var(--primary) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}

.api-key-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px) !important;
}

html.dark-mode .api-key-box {
  background: #252d3d !important;
  border-left-color: #4a90e2 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

html.light-mode .api-key-box {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-left: 4px solid var(--primary) !important;
}
  color: #5ba3f5;
}

/* Status: Default/Neutral */
.badge-default, .badge-neutral {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-color: var(--border);
}

html.dark-mode .badge-default, html.dark-mode .badge-neutral {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

/* Status: Open/Closed/Resolved */
.badge-open {
  background: rgba(52, 168, 83, 0.1);
  color: var(--success-dark);
  border-color: var(--success);
}

.badge-closed, .badge-resolved {
  background: rgba(107, 114, 128, 0.1);
  color: var(--gray-600);
  border-color: var(--gray-400);
}

.badge-pending {
  background: rgba(249, 168, 37, 0.1);
  color: var(--warning-dark);
  border-color: var(--warning);
}

/* ═══════════════════════════════════════════════════════════════
   FORM ELEMENTS - Tutarlı ve Modern
   ═══════════════════════════════════════════════════════════════ */

input, textarea, select {
  width: 100%;

  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;

  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

input:disabled, textarea:disabled, select:disabled {
  background: var(--bg-secondary);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   CARD & CONTAINER - Profesyonel Görünüm
   ═══════════════════════════════════════════════════════════════ */

.card, .panel, .box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);

  transition: all var(--transition-normal);
}

.card:hover, .panel:hover {
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════
   TABLE - Profesyonel ve Okunabilir
   ═══════════════════════════════════════════════════════════════ */

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

table th {
  background: var(--bg-secondary);
  color: var(--text-secondary);

  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 2px solid var(--border);

  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 12px;
}

table td {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

table tbody tr:hover {
  background: var(--bg-secondary);
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   ALERT & MESSAGE BOXES
   ═══════════════════════════════════════════════════════════════ */

.alert {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--spacing-lg);

  font-size: 14px;
  line-height: 1.5;
}

.alert-success {
  background: rgba(52, 168, 83, 0.1);
  color: var(--success-dark);
  border-left-color: var(--success);
}

.alert-danger, .alert-error {
  background: rgba(211, 59, 39, 0.1);
  color: var(--danger-dark);
  border-left-color: var(--danger);
}

.alert-warning {
  background: rgba(249, 168, 37, 0.1);
  color: var(--warning-dark);
  border-left-color: var(--warning);
}

.alert-info {
  background: rgba(74, 144, 226, 0.1);
  color: var(--info-dark);
  border-left-color: var(--info);
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

small {
  color: var(--text-tertiary);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }
.text-muted { color: var(--text-tertiary); }

.bg-primary { background: var(--primary); color: white; }
.bg-success { background: var(--success); color: white; }
.bg-danger { background: var(--danger); color: white; }

.border-primary { border-color: var(--primary); }
.border-success { border-color: var(--success); }
.border-danger { border-color: var(--danger); }

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }

.m-sm { margin: var(--spacing-sm); }
.m-md { margin: var(--spacing-md); }
.m-lg { margin: var(--spacing-lg); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

/* ═══════════════════════════════════════════════════════════════
   FUTURES POSITIONS SECTION - Professional CSS Classes
   ═══════════════════════════════════════════════════════════════ */

.futures-section {
  margin: 2rem 0;
}

.futures-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0 0 2rem 0;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  text-transform: uppercase;
}

.futures-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.futures-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(102, 126, 234, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.futures-header-simple {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.futures-symbol-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.futures-symbol {
  font-size: 1.5rem;
  font-weight: 900;
  color: #667eea;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.futures-leverage {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.futures-pnl-header {
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Courier New', monospace;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.futures-pnl-header.profit {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.futures-pnl-header.loss {
  color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

/* Data Grid for Price, PnL, Margin info */
.data-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.data-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.data-grid-4col {
  grid-template-columns: repeat(4, 1fr);
}

.data-item {
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255, 255, 255, 0.01) 100%);
  transition: all 0.3s ease;
  position: relative;
}

.data-item.data-item-success {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.data-item.data-item-success::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.data-item.data-item-warning {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.02) 100%);
}

.data-item.data-item-warning::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.data-item.data-item-neutral {
  border-color: rgba(100, 116, 139, 0.3);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.05) 0%, rgba(100, 116, 139, 0.01) 100%);
}

.data-item.data-item-neutral::before {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.data-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
}

.data-item-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.data-item-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  word-break: break-word;
}

.data-item-value.success {
  color: #10b981;
  font-weight: 800;
}

.data-item-value.danger {
  color: #ef4444;
  font-weight: 800;
}

.data-item-value.warning {
  color: #f59e0b;
  font-weight: 800;
}

.data-item-value.info {
  color: #3b82f6;
}

/* Margin Information Section */
.margin-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 100%);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.margin-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.margin-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.margin-item {
  padding: 1rem;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.margin-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 8px 8px 0 0;
}

.margin-item-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.margin-item-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
}

/* Additional Info Footer */
.additional-info {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(239, 68, 68, 0.02) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  border-left: 4px solid #ef4444;
  font-size: 0.85rem;
}

.additional-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

.additional-info-row:not(:last-child) {
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 0;
  padding-bottom: 0.6rem;
}

.additional-info-label {
  font-weight: 700;
  color: var(--text-secondary);
}

.additional-info-value {
  font-weight: 700;
  color: #ef4444;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
}
