@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Renk Paleti - OnayTR Style (Light/SaaS) */
  --primary: #6C4DE6;
  --primary-hover: #5a3ed4;
  --primary-light: rgba(108, 77, 230, 0.1);
  --primary-dim: rgba(108, 77, 230, 0.05);

  --bg-body: #f0f4f8;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f8fafc;
  
  --text-main: #1a202c;
  --text-muted: #718096;
  --text-light: #a0aec0;

  --border-color: #e2e8f0;
  --border-light: #edf2f7;

  --success: #10b981;
  --success-bg: #d1fae5;
  --danger: #ef4444;
  --danger-bg: #fee2e2;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --info: #3b82f6;
  --info-bg: #dbeafe;

  /* Font ve Gölgeler */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Layout */
  --sidebar-width: 280px;
  --topbar-height: 70px;
}

/* ──────────────────────────────────────────────────────────
   TEMEL SIFIRLAMA (RESET) VE GENEL AYARLAR
────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-hover);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ──────────────────────────────────────────────────────────
   LAYOUT (SIDEBAR + MAIN + TOPBAR)
────────────────────────────────────────────────────────── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 50;
  transition: transform 0.3s ease;
}

.sidebar-logo {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--border-light);
  gap: 0.75rem;
}

.sidebar-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.sidebar-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.sidebar-logo img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin: 1.25rem 0 0.5rem 0.5rem;
}
.nav-section-title:first-child { margin-top: 0; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.nav-item:hover {
  background-color: var(--bg-surface-hover);
  color: var(--primary);
}

.nav-item.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.sidebar-username {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}
.sidebar-balance {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

/* MAIN CONTENT */
.main {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
}

/* TOPBAR */
.topbar {
  height: var(--topbar-height);
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
}
.topbar-breadcrumb .current {
  color: var(--text-main);
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.balance-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(108, 77, 230, 0.2);
  transition: all 0.2s ease;
}
.balance-chip:hover {
  background-color: var(--primary);
  color: white;
}
/* PAGE HEADER CARD */
.page-header {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), #4f46e5);
}
.page-header h1 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  margin: 0 0 0.35rem 0 !important;
}
.page-header p {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.page-content {
  padding: 2rem;
  flex: 1;
}

/* ──────────────────────────────────────────────────────────
   BİLEŞENLER (COMPONENTS)
────────────────────────────────────────────────────────── */

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn i { font-size: 1.1em; }

.btn-primary {
  background-color: var(--primary);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover {
  background-color: var(--bg-surface-hover);
  color: var(--text-main);
}

.btn-danger {
  background-color: var(--danger-bg);
  color: var(--danger);
}
.btn-danger:hover {
  background-color: var(--danger);
  color: white;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Kartlar */
.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-body {
  padding: 1.5rem;
}

/* Formlar */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Tablolar */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.table th {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--bg-surface-hover);
}
.table tbody tr:hover {
  background-color: var(--bg-surface-hover);
}
.table tbody tr:last-child td {
  border-bottom: none;
}

/* Badgeler */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger  { background: var(--danger-bg); color: var(--danger); }
.badge-info    { background: var(--info-bg); color: var(--info); }
.badge-primary { background: var(--primary-light); color: var(--primary); }

/* Alertler */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success { background: var(--success-bg); color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: var(--danger-bg); color: #991b1b; border: 1px solid #fecaca; }
.alert-warn, .alert-warning { background: var(--warning-bg); color: #92400e; border: 1px solid #fde68a; }

/* Grid Utilities */
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ──────────────────────────────────────────────────────────
   DASHBOARD ÖZEL
────────────────────────────────────────────────────────── */
.hero-banner {
  background: linear-gradient(135deg, #6C4DE6 0%, #4B32A3 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}
.hero-balance-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: right;
}
.hero-balance-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.hero-balance-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: monospace;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stat-icon.primary { background: var(--primary-light); color: var(--primary); }
.stat-icon.success { background: var(--success-bg); color: var(--success); }
.stat-icon.warning { background: var(--warning-bg); color: var(--warning); }
.stat-icon.danger  { background: var(--danger-bg); color: var(--danger); }

.stat-info { flex: 1; }
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}
.service-icon.wa { background-color: #25D366; }
.service-icon.tg { background-color: #0088cc; }
.service-icon.go { background-color: #DB4437; }
.service-icon.ig { background-color: #E1306C; }

/* ──────────────────────────────────────────────────────────
   ORDER KARTLARI (Aktif Numaralar)
────────────────────────────────────────────────────────── */
.order-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.order-card.waiting {
  border-left: 4px solid var(--warning);
}
.order-card.received {
  border-left: 4px solid var(--success);
}
.order-number {
  font-size: 1.25rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
}
.countdown-wrap {
  flex: 1;
}
.countdown-bar-bg {
  height: 6px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.countdown-bar {
  height: 100%;
  background: var(--warning);
  width: 100%;
  transition: width 1s linear;
}
.order-card.received .countdown-bar { background: var(--success); }

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  background: var(--bg-surface);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  animation: toastIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger); }
.toast.info    { border-color: var(--info); }

@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(108, 77, 230, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(108, 77, 230, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 77, 230, 0); }
}

/* Animasyonlar */
.animate-in {
  animation: fadeInUp 0.5s ease backwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sidebar Toggle & Close Buttons */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 0.5rem;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sidebar-toggle:hover {
  background: var(--border-light);
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.sidebar-close:hover {
  background: var(--border-light);
  color: var(--danger);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile Settings / User Detail Tabs Scrollability */
.tabs-nav {
  overflow-x: auto !important;
  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch;
}
.tabs-nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.tabs-nav {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.tab-btn {
  flex-shrink: 0 !important;
}

@media (max-width: 992px) {
  :root { --sidebar-width: 0px; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.show { transform: translateX(0); }
  .main { margin-left: 0; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-balance-box { width: 100%; text-align: left; }
  
  .sidebar-toggle { display: inline-flex; }
  .sidebar-close { display: inline-flex; }
  
  .topbar {
    padding: 0 1rem;
  }
  .topbar-breadcrumb {
    display: none;
  }
}
@media (max-width: 576px) {
  .grid-cols-4 { grid-template-columns: 1fr; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .order-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .order-actions { width: 100%; display: flex; }
  .order-actions .btn { flex: 1; }
}

/* ──────────────────────────────────────────────────────────
   ADMIN DASHBOARD GRID & STAT CARDS
   ────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Stat card modifier styles inside admin */
.stat-card .stat-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}
.stat-card .stat-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.stat-card .stat-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}
.stat-card .stat-icon.yellow {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}
.stat-card .stat-icon.purple {
  background: rgba(108, 77, 230, 0.1);
  color: var(--primary);
}

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────
   EMPTY STATES
   ────────────────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: block;
}
.empty-state p {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
.empty-state p small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────
   CODE EDITOR BOX (SYNTAX HIGHLIGHTING)
   ────────────────────────────────────────────────────────── */
.code-editor-box {
  background: #0f172a;
  border-radius: 12px;
  border: 1px solid #1e293b;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-family: monospace;
}
.code-editor-header {
  background: #1e293b;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #334155;
}
.code-editor-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.code-editor-header .dot.red { background: #ef4444; }
.code-editor-header .dot.yellow { background: #f59e0b; }
.code-editor-header .dot.green { background: #10b981; }
.code-editor-title {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  font-weight: 600;
}
.code-editor-body {
  padding: 1.5rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.7;
}
.code-editor-body pre {
  margin: 0;
}
.code-editor-body code {
  font-family: inherit;
}
/* Renk Kodları */
.code-keyword { color: #f472b6; font-weight: 700; }
.code-variable { color: #38bdf8; }
.code-comment { color: #64748b; font-style: italic; }
.code-number { color: #fbbf24; }
.code-operator { color: #fb7185; }
.code-function { color: #c084fc; }



