/* ============================================================
   TurkeySMS API Documentation — Unified Stylesheet
   Version: 4.0.0
   Supports: LTR (EN/TR) + RTL (AR)
   Theme: Dark Mode default with Light Mode toggle
   ============================================================ */

/* ===================== CSS Variables ===================== */
:root {
  /* Dark Theme (default) */
  --bg-primary:    #0A0F1C;
  --bg-secondary:  #111827;
  --bg-card:       #1A2035;
  --bg-sidebar:    #0D1321;
  --bg-code:       #0D1117;
  --bg-code-inline:#1E293B;
  --bg-hover:      #1E2A40;
  --bg-badge:      rgba(0,212,170,0.12);
  --bg-table-head: #151D2E;
  --bg-table-row:  #111827;
  --bg-table-alt:  #0F1729;

  --text-primary:   #E2E8F0;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;
  --text-heading:   #F1F5F9;
  --text-code:      #E2E8F0;

  --accent:         #00D4AA;
  --accent-hover:   #00F0C0;
  --accent-dim:     rgba(0,212,170,0.15);
  --blue:           #3B82F6;
  --blue-dim:       rgba(59,130,246,0.12);
  --orange:         #F59E0B;
  --red:            #EF4444;
  --green:          #10B981;
  --purple:         #8B5CF6;

  --border:         #1E293B;
  --border-light:   #2D3A52;
  --divider:        #1E293B;

  --radius:         10px;
  --radius-sm:      6px;
  --radius-lg:      16px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg:      0 8px 30px rgba(0,0,0,0.5);

  --sidebar-width:  280px;
  --header-height:  64px;
  --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans:      'Inter', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary:    #FFFFFF;
  --bg-secondary:  #F8FAFC;
  --bg-card:       #FFFFFF;
  --bg-sidebar:    #F1F5F9;
  --bg-code:       #F8FAFC;
  --bg-code-inline:#F1F5F9;
  --bg-hover:      #E2E8F0;
  --bg-badge:      rgba(0,180,140,0.08);
  --bg-table-head: #F1F5F9;
  --bg-table-row:  #FFFFFF;
  --bg-table-alt:  #F8FAFC;

  --text-primary:   #1E293B;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --text-heading:   #0F172A;
  --text-code:      #1E293B;

  --accent:         #00A882;
  --accent-hover:   #008F6E;
  --border:         #E2E8F0;
  --border-light:   #CBD5E1;
  --divider:        #E2E8F0;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:      0 8px 30px rgba(0,0,0,0.1);
}

/* ===================== Reset & Base ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .doc-sidebar { left: auto; right: 0; border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .doc-main { margin-left: 0; margin-right: var(--sidebar-width); }
[dir="rtl"] .param-name { text-align: right; }
[dir="rtl"] .code-block { direction: ltr; text-align: left; }
[dir="rtl"] .inline-code { direction: ltr; }

/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 { font-size: 2rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }

p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

/* ===================== Header / Navbar ===================== */
.doc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition);
}

[data-theme="light"] .doc-header {
  background: rgba(255,255,255,0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { height: 32px; width: auto; }
.header-logo .version-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.header-nav a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover { color: var(--text-primary); background: var(--bg-hover); }
.header-nav a.active-lang { color: var(--accent); background: var(--accent-dim); }

.header-nav .btn-primary-nav {
  background: var(--accent);
  color: #0A0F1C !important;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
}
.header-nav .btn-primary-nav:hover { background: var(--accent-hover); }

/* Theme Toggle */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  margin-inline-start: 4px;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ===================== Sidebar ===================== */
.doc-sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 0;
  z-index: 100;
  transition: transform var(--transition);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.doc-sidebar::-webkit-scrollbar { width: 4px; }
.doc-sidebar::-webkit-scrollbar-track { background: transparent; }
.doc-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sidebar-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 16px 24px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.6;
}

.sidebar-nav { list-style: none; }

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  border-inline-start: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.sidebar-nav li a:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.sidebar-nav li a.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-inline-start-color: var(--accent);
  font-weight: 600;
}

.sidebar-nav li a .nav-icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  opacity: 0.7;
}

.sidebar-nav li a .coming-soon-badge {
  font-size: 9px;
  background: var(--bg-hover);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 10px;
  margin-inline-start: auto;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 24px;
}

/* ===================== Main Content ===================== */
.doc-main {
  margin-left: var(--sidebar-width);
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  padding: 40px 48px 80px;
  max-width: 900px;
}

.doc-section {
  padding-top: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
  animation: fadeInUp 0.4s ease-out;
}
.doc-section:last-child { border-bottom: none; }

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

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header .section-icon {
  font-size: 22px;
  color: var(--accent);
}

.section-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

/* ===================== Endpoint Box ===================== */
.endpoint-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 16px 0;
}

.endpoint-method {
  background: var(--accent);
  color: #0A0F1C;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.endpoint-method.get { background: var(--blue); color: #fff; }

.endpoint-url {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
  word-break: break-all;
}

/* ===================== Code Blocks ===================== */
.code-block-wrapper {
  position: relative;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-table-head);
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

.code-block-lang {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.copy-btn:hover { color: var(--accent); border-color: var(--accent); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }

.code-block {
  background: var(--bg-code);
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-code);
  direction: ltr;
  text-align: left;
  tab-size: 4;
}

.code-block::-webkit-scrollbar { height: 5px; }
.code-block::-webkit-scrollbar-track { background: transparent; }
.code-block::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Inline Code */
code:not(.code-block code) {
  background: var(--bg-code-inline);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 7px;
  border-radius: 4px;
  direction: ltr;
  display: inline;
}

/* Syntax Colors */
.token-keyword  { color: #C792EA; }
.token-string   { color: #A5D6A7; }
.token-comment  { color: #546E7A; font-style: italic; }
.token-variable { color: #82AAFF; }
.token-function { color: #82AAFF; }
.token-number   { color: #F78C6C; }
.token-key      { color: #89DDFF; }
.token-value    { color: #C3E88D; }
.token-method   { color: #FFCB6B; }
.token-bool     { color: #F78C6C; }
.token-punct    { color: #89DDFF; }

/* ===================== Tables ===================== */
.doc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 16px 0;
  font-size: 14px;
}

.doc-table thead th {
  background: var(--bg-table-head);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: start;
  border-bottom: 1px solid var(--border);
}

.doc-table tbody tr {
  transition: background var(--transition);
}
.doc-table tbody tr:hover { background: var(--bg-hover); }
.doc-table tbody tr:nth-child(even) { background: var(--bg-table-alt); }
.doc-table tbody tr:nth-child(even):hover { background: var(--bg-hover); }

.doc-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.doc-table tbody tr:last-child td { border-bottom: none; }

.doc-table .param-name {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  white-space: nowrap;
}

.doc-table .param-type {
  font-family: var(--font-mono);
  color: var(--purple);
  font-size: 12px;
  font-weight: 500;
  background: rgba(139,92,246,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.doc-table .param-required {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.doc-table .param-optional {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===================== Info / Alert Boxes ===================== */
.info-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.info-box .info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.info-box.info {
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue);
}

.info-box.success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--green);
}

.info-box.warning {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--orange);
}

.info-box.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--red);
}

/* ===================== Requirements Cards ===================== */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.req-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.req-card .req-icon { font-size: 28px; margin-bottom: 12px; }
.req-card h4 { font-size: 14px; margin-bottom: 6px; color: var(--text-heading); }
.req-card p { font-size: 13px; margin: 0; color: var(--text-muted); line-height: 1.6; }

/* ===================== SDK Grid ===================== */
.sdk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sdk-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
}
.sdk-box:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.sdk-info { display: flex; align-items: center; gap: 12px; }
.sdk-info .sdk-icon { font-size: 24px; min-width: 30px; text-align: center; }
.sdk-info .sdk-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.sdk-info .sdk-lang { font-size: 12px; color: var(--text-muted); }

/* ===================== Footer ===================== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.status-badge.s200 { background: rgba(16,185,129,0.12); color: var(--green); }
.status-badge.s400 { background: rgba(245,158,11,0.12); color: var(--orange); }
.status-badge.s401 { background: rgba(239,68,68,0.1); color: var(--red); }
.status-badge.s403 { background: rgba(239,68,68,0.1); color: var(--red); }

/* ===================== Quick Start Hero ===================== */
.quickstart-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,212,170,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 20px 0;
}

.quickstart-hero h3 {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ===================== SDK Download Box ===================== */
.sdk-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 12px 0;
  transition: all var(--transition);
}
.sdk-box:hover { border-color: var(--accent); }

.sdk-info { display: flex; align-items: center; gap: 12px; }
.sdk-info .sdk-icon { font-size: 24px; }
.sdk-info .sdk-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.sdk-info .sdk-lang { font-size: 12px; color: var(--text-muted); }

/* ===================== Footer ===================== */
.doc-footer {
  margin-left: var(--sidebar-width);
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
[dir="rtl"] .doc-footer { margin-left: 0; margin-right: var(--sidebar-width); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .doc-main { padding: 32px 28px 60px; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .doc-sidebar {
    transform: translateX(-100%);
    width: 280px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  [dir="rtl"] .doc-sidebar { transform: translateX(100%); }

  .doc-sidebar.open { transform: translateX(0); }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .sidebar-overlay.visible { display: block; }

  .doc-main, .doc-footer { margin-left: 0 !important; margin-right: 0 !important; }
  .doc-main { padding: 24px 20px 60px; max-width: 100%; }

  .header-nav { display: none; }
  .header-nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 12px; z-index: 1001; }

  .req-grid { grid-template-columns: 1fr; }
  .endpoint-box { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .doc-main { padding: 20px 16px 48px; }
  .code-block { font-size: 12.5px; padding: 16px; }
  .doc-table { font-size: 13px; }
}

/* ===================== Utility ===================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-600 { font-weight: 600; }
.hidden { display: none !important; }

/* Smooth section transitions */
.doc-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* ===================== Modal Styles ===================== */
.ts-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.ts-modal.open {
  display: flex;
}

.ts-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 850px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.ts-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ts-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.1rem;
}

.ts-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: color var(--transition);
}
.ts-modal-close:hover { color: var(--red); }

.ts-modal-body {
  flex: 1;
  overflow: auto;
  background: var(--bg-code);
  position: relative;
}

.ts-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-secondary {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--border); }

.btn-copy-modal {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #0A0F1C;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-copy-modal:hover { background: var(--accent-hover); }
