:root {
  --bg: #020617;
  --bg-soft: #020617;
  --sidebar: #020617;
  --card: #020617;
  --accent: #22c55e;
  --accent-soft: #16a34a;
  --danger: #ef4444;
  --border-soft: rgba(148, 163, 184, 0.4);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
}

* {
  box-sizing: border-box;
}
.hidden {
  display: none !important;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0f172a, #020617 55%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
}

.layout {
  display: flex;
  width: 100%;
}

.sidebar {
  width: 240px;
  background: var(--sidebar);
  border-right: 1px solid rgba(148, 163, 184, 0.25);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.nav-group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.nav-item {
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
}

.nav-item.active {
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
}

.sidebar-footer {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  gap: 12px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topbar-left span {
  font-size: 12px;
  color: var(--text-muted);
}

.badge-live {
  min-width: 145px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
  font-size: 11px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.topbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.7);
  font-size: 11px;
  color: var(--text-muted);
}

.pill-select {
  outline: none;
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.9);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
}

.btn-sm {
  padding: 4px 10px;
  font-size: 11px;
}

.btn-toggle {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
}

.btn-toggle.active {
  border-color: #22c55e;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.grid-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  flex: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th,
td {
  padding: 7px 9px;
  text-align: left;
}

thead {
  background: rgba(15, 23, 42, 0.9);
}

th {
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.7);
}

tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.9);
}

tbody tr:hover {
  background: rgba(30, 64, 175, 0.45);
  cursor: pointer;
}

.selected-row {
  background: rgba(56, 189, 248, 0.25) !important;
  border-left: 3px solid #38bdf8;
}

.selected-row:hover {
  background: rgba(56, 189, 248, 0.3) !important;
}

.symbol {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.price {
  font-variant-numeric: tabular-nums;
}

.change-positive {
  color: #4ade80;
}
.change-negative {
  color: #fca5a5;
}
.change-neutral {
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.watchlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.watchlist-form input {
  flex: 1;
  min-width: 140px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  font-size: 12px;
  outline: none;
}

.watchlist-form input::placeholder {
  color: var(--text-muted);
}

.watchlist-tools {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.watchlist-search {
  flex: 1;
  min-width: 120px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  font-size: 11px;
  outline: none;
}

.watchlist-filter {
  min-width: 150px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-size: 11px;
  outline: none;
}

.error {
  min-height: 16px;
  font-size: 11px;
  color: #fecaca;
  margin-top: 2px;
}

.chart-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}

#chart {
  width: 100%;
  height: 260px;
}

.chart-placeholder {
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px;
}

/* Sinyal badges */

.signal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sig-strong-buy {
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.sig-buy {
  background: rgba(34, 197, 94, 0.09);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.sig-neutral {
  background: rgba(148, 163, 184, 0.1);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.sig-sell {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.5);
}

.sig-strong-sell {
  background: rgba(248, 113, 113, 0.2);
  color: #fee2e2;
  border: 1px solid rgba(248, 113, 113, 0.8);
}

/* TOASTERS */
.toast-container {
  position: fixed;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: 320px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  pointer-events: auto;
  animation: toast-in 0.25s ease-out;
}

.toast-strong-buy {
  border-color: rgba(34, 197, 94, 0.7);
  background: rgba(22, 163, 74, 0.2);
}

.toast-buy {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(22, 163, 74, 0.15);
}

.toast-sell {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(127, 29, 29, 0.3);
}

.toast-strong-sell {
  border-color: rgba(248, 113, 113, 0.8);
  background: rgba(127, 29, 29, 0.45);
}

.toast-neutral {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
}

.toast-title {
  font-weight: 600;
  font-size: 12px;
}

.toast-body {
  font-size: 11px;
  color: #cbd5f5;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile footer */

.mobile-footer {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 12px 6px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.95);
}

.mobile-footer span {
  color: #ef4444;
}

/* Sinyal log */

.signal-log {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  font-size: 11px;
  color: var(--text-muted);
  max-height: 120px;
  overflow-y: auto;
}

.signal-log-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.signal-log-item {
  padding: 3px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
}

.signal-log-item:last-child {
  border-bottom: none;
}

.signal-log-item strong {
  color: #e5e7eb;
}

.signal-log-time {
  font-size: 10px;
  color: #6b7280;
}

.signal-icon {
  margin-right: 6px;
  font-size: 13px;
}

.log-up {
  color: #4ade80;
}

.log-strong-up {
  color: #22c55e;
}

.log-down {
  color: #f87171;
}

.log-strong-down {
  color: #ef4444;
}

.log-neutral {
  color: #9ca3af;
}

.signal-log-item.highlight-up {
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid #22c55e;
  padding-left: 6px;
}

.signal-log-item.highlight-down {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #ef4444;
  padding-left: 6px;
}

/* Analiz paneli */

.analysis-panel {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  font-size: 11px;
  color: var(--text-muted);
}

.analysis-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.analysis-coin-label {
  margin-left: 6px;
  font-size: 11px;
  color: #e5e7eb;
  opacity: 0.9;
}

.analysis-body {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.analysis-metric {
  flex: 1;
}

.analysis-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 2px;
}

.analysis-value {
  font-size: 12px;
  color: #e5e7eb;
}

.trend-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.trend-pill {
  flex: 1;
  padding: 3px 0;
  text-align: center;
  border-radius: 999px;
  font-size: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trend-pill.up {
  border-color: rgba(34, 197, 94, 0.7);
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

.trend-pill.down {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(127, 29, 29, 0.25);
  color: #fecaca;
}

.trend-pill.neutral {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
}

.analysis-comment {
  font-size: 11px;
  color: #cbd5f5;
}

/* Alarm Yönetimi */

.alarm-form {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.alarm-form input,
.alarm-form select {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  font-size: 11px;
  outline: none;
}

#alarm-symbol {
  flex: 0 0 110px;
}

#alarm-type {
  flex: 0 0 130px;
}

#alarm-value {
  flex: 0 0 110px;
}

.alarm-hint {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.alarm-list {
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 6px 8px;
  font-size: 11px;
  max-height: 160px;
  overflow-y: auto;
}

.alarm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}

.alarm-item:last-child {
  border-bottom: none;
}

.alarm-meta {
  font-size: 10px;
  color: #9ca3af;
}

.alarm-actions button {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: transparent;
  color: #e5e7eb;
  font-size: 10px;
  padding: 2px 6px;
  cursor: pointer;
  margin-left: 3px;
}

.alarm-active {
  color: #bbf7d0;
}

/* Portföy */

.summary-box {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  padding: 6px 8px;
  font-size: 11px;
  margin-bottom: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.summary-label {
  color: #9ca3af;
}

.summary-value {
  color: #e5e7eb;
  text-align: right;
}

.portfolio-form {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.portfolio-form input {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  font-size: 11px;
  outline: none;
}

#portfolio-symbol {
  flex: 0 0 110px;
}

#portfolio-amount {
  flex: 0 0 90px;
}

#portfolio-avg {
  flex: 0 0 120px;
}

.portfolio-table-wrapper {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  overflow-x: auto;
}

.portfolio-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.portfolio-table th,
.portfolio-table td {
  padding: 6px 8px;
}

/* TradingView link */

.tv-link {
  font-size: 11px;
  color: #38bdf8;
  text-decoration: none;
}

.tv-link:hover {
  text-decoration: underline;
}

/* Animasyonlar */

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .sidebar {
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-secondary {
    grid-template-columns: 1fr;
  }
  .content {
    padding: 12px;
  }
  .topbar-left h1 {
    font-size: 16px;
  }
  .mobile-footer {
    display: block;
    position: sticky;
    bottom: -2;
    width: 100%;
  }
}

@media (max-width: 600px) {
  th:nth-child(5),
  td:nth-child(5),
  th:nth-child(6),
  td:nth-child(6) {
    display: none;
  }
}
/* =========================
   LocalStorage / Consent Popup
   ========================= */

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 9998;
}

.consent-modal {
  background: #020617;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  max-width: 420px;
  width: 100%;
  padding: 16px 18px 14px;
  font-size: 13px;
  color: var(--text-main);
}

.consent-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.consent-text {
  margin: 4px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.consent-text strong {
  color: #e5e7eb;
}

.consent-list {
  margin: 6px 0 6px 18px;
  padding: 0;
  font-size: 12px;
  color: #cbd5f5;
}

.consent-list li {
  margin-bottom: 3px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #e5e7eb;
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #22c55e;
}

.consent-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 6px;
}

.consent-footnote {
  margin: 0;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}

/* Body scroll kilidi */
body.consent-open {
  overflow: hidden;
}

/* Mobil uyum (modal tam genişlik) */
@media (max-width: 600px) {
  .consent-modal {
    max-width: 100%;
    border-radius: 16px;
    padding: 14px 14px 12px;
  }
}
.ta-support-box {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  font-size: 11px;
  color: var(--text-muted);
}

.ta-support-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.ta-support-title span {
  font-size: 10px;
  color: #6b7280;
}

.ta-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.ta-support-item {
  padding: 6px 7px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.ta-support-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.ta-support-value {
  font-size: 11px;
  color: #e5e7eb;
  font-variant-numeric: tabular-nums;
}

.ta-support-diff {
  font-size: 10px;
  margin-top: 1px;
}

/* Fiyata göre renk */
.ta-support-diff.up {
  color: #4ade80;
}

.ta-support-diff.down {
  color: #fca5a5;
}

.ta-support-diff.neutral {
  color: #9ca3af;
}
/* SAĞ PANEL SKELETON */
.right-col-wrapper {
  position: relative;
}

/* Skeleton blok */
.right-loading {
  position: absolute;
  inset: 0;
  padding-left: 16px;
  padding-right: 0;
  display: none;            /* JS ile açıp kapatacağız */
  pointer-events: none;
  z-index: 5;
}

.right-loading .skeleton-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 10px 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  margin-bottom: 10px;
  overflow: hidden;
}

.skeleton-header-line {
  height: 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0.4),
    rgba(148, 163, 184, 0.4),
    rgba(30, 64, 175, 0.4)
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite ease-in-out;
}

.skeleton-chart-area {
  height: 180px;
  border-radius: 12px;
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
}

.skeleton-chart-area::before {
  content: "";
  position: absolute;
  inset: 20% 10%;
  border-radius: 999px;
  border: 2px solid rgba(34, 197, 94, 0.35);
  filter: blur(3px);
  opacity: 0.7;
}

.skeleton-line {
  height: 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0.4),
    rgba(148, 163, 184, 0.4),
    rgba(30, 64, 175, 0.4)
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite ease-in-out;
}

.skeleton-line.w-70 {
  width: 70%;
}
.skeleton-line.w-60 {
  width: 60%;
}
.skeleton-line.w-50 {
  width: 50%;
}

.skeleton-pill-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.skeleton-pill {
  flex: 1;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.25),
    rgba(56, 189, 248, 0.4),
    rgba(34, 197, 94, 0.25)
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite ease-in-out;
}

/* Skeleton shimmer animasyonu */
@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
    opacity: 0.6;
  }
  50% {
    background-position: 0% 0;
    opacity: 1;
  }
  100% {
    background-position: 200% 0;
    opacity: 0.6;
  }
}

/* Yüklenirken sağ paneli hafif soluk yapalım (opsiyonel) */
.right-col-wrapper.loading #right-content {
  opacity: 0.25;
  filter: blur(1px);
  transition: opacity 0.25s ease-out, filter 0.25s ease-out;
}

/* Küçük ekranlarda padding ayarı */
@media (max-width: 768px) {
  .right-loading {
    position: static;
    padding: 0;
    margin-bottom: 8px;
  }
}

.types{
      color: #ffffff;
    background: green;
    padding: 4px;
    border-radius: 97px;
    font-size: 9px;
}