/* ============================================================
   EKAP İhale Takip - Popup Stilleri
   Premium Dark Theme
   ============================================================ */

:root {
  /* Renkler */
  --bg-primary: #0f0f1a;
  --bg-secondary: #161625;
  --bg-tertiary: #1e1e32;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --bg-input: #12121f;

  --text-primary: #e8e8f0;
  --text-secondary: #9898b0;
  --text-muted: #6868808;
  --text-accent: #818cf8;

  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-dark: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.15);

  --success: #4ade80;
  --success-bg: rgba(74, 222, 128, 0.1);
  --warning: #fbbf24;
  --warning-bg: rgba(251, 191, 36, 0.1);
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.1);
  --info: #22d3ee;
  --info-bg: rgba(34, 211, 238, 0.1);

  --border: rgba(255, 255, 255, 0.06);
  --border-focus: rgba(99, 102, 241, 0.5);

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

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

  --transition: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 16px;
  background: #090912;
  color: var(--text-primary);
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.app {
  width: 460px;
  min-height: 540px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

@media (max-width: 480px) {
  body {
    padding: 0;
  }
  .app {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
}

/* ==========================================
   Header
   ========================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-bottom: 1px solid var(--border);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-title {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
}

.header-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
}

.header-right {
  display: flex;
  gap: 4px;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* ==========================================
   Navigation Tabs
   ========================================== */
.tabs {
  display: flex;
  padding: 0 8px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  gap: 2px;
}

.tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  position: relative;
}

.tab:hover {
  color: var(--text-primary);
  background: rgba(99, 102, 241, 0.05);
}

.tab.active {
  color: var(--accent-light);
  border-bottom-color: var(--accent);
}

.badge {
  background: var(--danger);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

/* ==========================================
   Content Area
   ========================================== */
.content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.content::-webkit-scrollbar {
  width: 4px;
}

.content::-webkit-scrollbar-track {
  background: transparent;
}

.content::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

.tab-content {
  display: none;
  padding: 12px 14px;
  animation: fadeIn 0.2s ease;
}

.tab-content.active {
  display: block;
}

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

/* ==========================================
   Stats Grid
   ========================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card.accent .stat-value { color: var(--accent-light); }
.stat-card.success .stat-value { color: var(--success); }
.stat-card.warning .stat-value { color: var(--warning); }

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ==========================================
   Action Section
   ========================================== */
.action-section {
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.running {
  background: linear-gradient(135deg, var(--danger), #dc2626);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 13px;
  width: 100%;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: var(--radius-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-success { background: var(--success); color: #000; }
.btn-warning { background: var(--warning); color: #000; }
.btn-danger { background: var(--danger); color: #fff; }

/* Scan Status */
.scan-status {
  margin-top: 10px;
}

.scan-progress {
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.scan-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--info));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.scan-text {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ==========================================
   Section
   ========================================== */
.section {
  margin-bottom: 16px;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-count {
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 8px;
}

/* ==========================================
   Tender Card
   ========================================== */
.tender-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tender-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tender-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.tender-card.seen {
  opacity: 0.65;
}

.tender-card.entered {
  border-left: 3px solid var(--success);
}

.tender-card.fit {
  border-left: 3px solid var(--accent);
}

.tender-card.hidden-tender {
  opacity: 0.55;
  border-style: dashed;
}

.tender-card.hiding {
  opacity: 0;
  transform: scale(0.96) translateY(-6px);
  pointer-events: none;
}

.tender-badge-tracked {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  white-space: nowrap;
}

.tender-badge-hidden {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  white-space: nowrap;
}

.tender-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.tender-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tender-status {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tender-status.open {
  background: var(--success-bg);
  color: var(--success);
}

.tender-status.result {
  background: var(--info-bg);
  color: var(--info);
}

.tender-status.cancelled {
  background: var(--danger-bg);
  color: var(--danger);
}

.tender-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.tender-meta-item {
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.tender-meta-item svg {
  opacity: 0.5;
}

.tender-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.tender-actions .btn {
  padding: 5px 2px;
  font-size: 10px;
  justify-content: center;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 5px;
  transition: all 0.15s ease;
}

.tender-actions .btn.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--accent);
  color: var(--accent-light);
  font-weight: 600;
}

.tender-actions .btn-untrack.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-weight: 600;
}

.tender-actions .btn-analyze.active {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
  font-weight: 600;
}

.tender-actions .btn-hide:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.tender-actions .btn-unhide {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.tender-actions .btn-unhide:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: #3b82f6;
}

/* ==========================================
   Filter Bar
   ========================================== */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.filter-row {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
}

.filter-select, .filter-input {
  padding: 7px 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 12px;
  outline: none;
  transition: var(--transition);
}

.filter-select {
  flex: 1;
  min-width: 0;
}

.filter-input {
  width: 100%;
}

.filter-select:focus, .filter-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ==========================================
   Empty State
   ========================================== */
.empty-state {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-muted);
}

.empty-state.small {
  padding: 15px;
}

.empty-state p {
  margin: 4px 0;
  font-size: 12px;
}

.text-muted {
  color: var(--text-muted);
  font-size: 11px;
}

/* ==========================================
   Log List
   ========================================== */
.log-list {
  max-height: 120px;
  overflow-y: auto;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--border);
}

.log-item:last-child {
  border-bottom: none;
}

.log-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.log-dot.info { background: var(--info); }
.log-dot.success { background: var(--success); }
.log-dot.warning { background: var(--warning); }
.log-dot.error { background: var(--danger); }

.log-text {
  flex: 1;
  color: var(--text-secondary);
}

.log-time {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ==========================================
   Modal
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.modal-lg {
  max-width: 100%;
}

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

.modal-header h2 {
  font-size: 14px;
  font-weight: 700;
}

.modal-body {
  padding: 14px 16px;
  overflow-y: auto;
  flex: 1;
}

/* ==========================================
   Form Elements
   ========================================== */
.settings-group {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.settings-group:last-of-type {
  border-bottom: none;
}

.settings-group-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 12px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-input {
  resize: vertical;
  min-height: 50px;
}

.form-hint {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

.form-hint a {
  color: var(--accent-light);
  text-decoration: none;
}

.form-hint a:hover {
  text-decoration: underline;
}

/* Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.chip {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.chip.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ==========================================
   Analysis Section
   ========================================== */
.analysis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.analysis-score {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.analysis-score.high {
  background: var(--success-bg);
  color: var(--success);
  border: 2px solid var(--success);
}

.analysis-score.medium {
  background: var(--warning-bg);
  color: var(--warning);
  border: 2px solid var(--warning);
}

.analysis-score.low {
  background: var(--danger-bg);
  color: var(--danger);
  border: 2px solid var(--danger);
}

.analysis-info h3 {
  font-size: 13px;
  margin-bottom: 2px;
}

.analysis-info p {
  font-size: 11px;
  color: var(--text-secondary);
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.analysis-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.analysis-item-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.analysis-item-value {
  font-size: 13px;
  font-weight: 700;
}

.analysis-item-value.positive { color: var(--success); }
.analysis-item-value.negative { color: var(--danger); }
.analysis-item-value.neutral { color: var(--warning); }

.analysis-notes {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-top: 8px;
}

.analysis-notes h4 {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.analysis-notes ul {
  padding-left: 16px;
}

.analysis-notes li {
  font-size: 11px;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.4;
}

/* ==========================================
   Detail Modal Content
   ========================================== */
.detail-section {
  margin-bottom: 14px;
}

.detail-section h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 11.5px;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}

.detail-row.detail-row-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.detail-row.detail-row-stacked .detail-value {
  text-align: left;
  line-height: 1.4;
  width: 100%;
  word-break: break-word;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 8px;
  border-radius: 4px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 600;
  font-size: 11px;
}

.detail-value {
  color: var(--text-primary);
  text-align: right;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.detail-value.money {
  color: var(--success);
  font-weight: 700;
}

/* ==========================================
   Responsive & Utility
   ========================================== */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.w-full { width: 100%; }

/* Loading Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tooltip */
[title] {
  position: relative;
}

/* Selection */
::selection {
  background: var(--accent);
  color: white;
}

/* ==========================================
   Advanced EKAP Other Filters & Controls
   ========================================== */
.sub-filter-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
}

.date-range-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 8px;
}

.other-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.other-filter-row:last-child {
  border-bottom: none;
}

.other-filter-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
}

.tri-btn-group {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2px;
  gap: 2px;
}

.tri-btn {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

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

.tri-btn.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Tam Ekran / Ayrı Sekme / Web Uygulaması (ekap.ondiso.io) Modu */
body.full-tab {
  width: 100% !important;
  max-width: 1200px !important;
  min-height: 100vh !important;
  max-height: none !important;
  margin: 0 auto !important;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  background: var(--bg-primary);
}

body.full-tab .app {
  max-height: none !important;
  height: auto !important;
  min-height: 100vh;
}

body.full-tab .tab-content {
  max-height: none !important;
  overflow-y: visible !important;
  padding-bottom: 40px;
}




