/* =============================================
   NFPixels Font Declarations
============================================= */
@font-face {
  font-family: 'NFPixels';
  src: url('../fonts/NFPixels-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   CSS Variables & Theme (Simplified Dark Theme)
============================================= */
:root {
  --background-color: #0a0a0a;
  --text-color: #33bb33;
  --h-color: #33bb33;
  --shadow-color: #001a00;
  --highlight: #112211;
  --highlight-color: #33bb33;
  --primary: #33bb33;
  --nth-child-color: #001a00;
  --bg-image-hr: linear-gradient(
    to right,
    rgba(0, 255, 0, 0.1),
    rgba(0, 255, 0, 0.3),
    rgba(0, 255, 0, 0.1)
  );
  --primary-rgb: 51, 187, 51;
  --aircraft-hover-scale: 1.1;
  --aircraft-pulse-duration: 2s;
}

/* =============================================
   Base & Reset Styles
============================================= */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'NFPixels', monospace;
  cursor: crosshair;
}

/* =============================================
   Interactive Elements
============================================= */

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #00cc00;
}

/* Buttons */
.btn {
  font-size: 12px;
  width: auto;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  color: var(--text-color);
  background-color: var(--background-color);
  font-family: 'NFPixels', monospace;
}

.btn:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--highlight);
}

/* =============================================
   Layout & Structure
============================================= */
.card {
  font-size: 12px;
  padding: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary);
}

/* =============================================
   ADS-B Radar Display Styles
============================================= */

/* Radar-specific base styles */
.radar-body {
  font-family: 'NFPixels', monospace;
  color: var(--text-color);
  background: var(--background-color);
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
}

.sidebar {
  width: 300px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar form div {
  display: flex;
  flex-direction: column;
}

.sidebar form label {
  font-size: 12px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.sidebar input[type="text"] {
  font-size: 12px;
  padding: 8px 12px;
  width: 100%;
  border: 1px solid var(--primary);
  background: var(--background-color);
  color: var(--text-color);
}

.radar-display-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.radar-title {
  font-family: 'NFPixels', monospace;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 
    0 0 10px rgba(var(--primary-rgb), 0.8),
    0 0 20px rgba(var(--primary-rgb), 0.6),
    0 0 30px rgba(var(--primary-rgb), 0.4);
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  box-shadow: 
    0 0 15px rgba(var(--primary-rgb), 0.3),
    inset 0 0 10px rgba(var(--primary-rgb), 0.1);
  animation: title-glow 3s ease-in-out infinite alternate;
}

.radar-title-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.radar-title-link:hover {
  color: #00ff00;
  text-shadow: 
    0 0 15px rgba(0, 255, 0, 1),
    0 0 25px rgba(0, 255, 0, 0.8),
    0 0 35px rgba(0, 255, 0, 0.6);
}

@keyframes title-glow {
  0% {
    text-shadow: 
      0 0 10px rgba(var(--primary-rgb), 0.8),
      0 0 20px rgba(var(--primary-rgb), 0.6),
      0 0 30px rgba(var(--primary-rgb), 0.4);
    box-shadow: 
      0 0 15px rgba(var(--primary-rgb), 0.3),
      inset 0 0 10px rgba(var(--primary-rgb), 0.1);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(var(--primary-rgb), 1),
      0 0 25px rgba(var(--primary-rgb), 0.8),
      0 0 35px rgba(var(--primary-rgb), 0.6);
    box-shadow: 
      0 0 20px rgba(var(--primary-rgb), 0.5),
      inset 0 0 15px rgba(var(--primary-rgb), 0.2);
  }
}

.radar-display {
  width: min(90vh, 90vw);
  height: min(90vh, 90vw);
  background: radial-gradient(circle at center, var(--nth-child-color) 0%, var(--background-color) 100%);
  border: 1px solid var(--primary);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
  position: relative;
}

.radar-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(var(--primary-rgb), 0.1) 49px, rgba(var(--primary-rgb), 0.1) 50px),
      repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(var(--primary-rgb), 0.1) 49px, rgba(var(--primary-rgb), 0.1) 50px);
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.radar-center::before,
.radar-center::after {
  content: '';
  position: absolute;
  background: var(--highlight-color);
  box-shadow: 0 0 10px var(--highlight-color);
}

.radar-center::before {
  width: 20px;
  height: 1px;
  top: 9px;
  left: 0;
}

.radar-center::after {
  width: 1px;
  height: 20px;
  left: 9px;
  top: 0;
}

.range-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.range-ring {
  position: absolute;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 50%;
  margin: 0;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.aircraft {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pulse var(--aircraft-pulse-duration, 2s) infinite;
  transition: left 2s ease, top 2s ease, transform 0.2s ease;
}

.aircraft-marker {
  background: var(--primary);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-bottom: 1px;
  filter: blur(0.5px);
}

.aircraft-marker-watched {
  background: #ff9900;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-bottom: 1px;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.7);
  filter: blur(0.3px);
}

.aircraft-marker-emergency {
  background: #ff0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-bottom: 1px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
  filter: blur(0.3px);
  animation: emergency-pulse 1s infinite;
}

.aircraft-label-emergency {
  font-size: 10px;
  white-space: nowrap;
  text-shadow: 0 0 8px #ff0000;
  background: rgba(0, 0, 0, 0.85);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  font-family: 'NFPixels', monospace;
  letter-spacing: 0.5px;
  color: #ff0000;
}

.aircraft-label {
  font-size: 10px;
  white-space: nowrap;
  text-shadow: 0 0 8px var(--primary);
  background: rgba(0, 0, 0, 0.85);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  font-family: 'NFPixels', monospace;
  letter-spacing: 0.5px;
}

.aircraft:hover {
  transform: translate(-50%, -50%) scale(var(--aircraft-hover-scale, 1.1));
  z-index: 10;
}

.aircraft:hover .aircraft-marker {
  background: #00ff00;
  box-shadow: 0 0 12px rgba(0, 255, 0, 0.9);
  filter: blur(0.2px);
}

.aircraft:hover .aircraft-marker-watched {
  background: #ffcc00;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.9);
  filter: blur(0.2px);
}

.aircraft:hover .aircraft-label {
  font-size: 11px;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid var(--primary);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

.sweep {
  position: absolute;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.9), transparent);
  top: 50%;
  left: 50%;
  transform-origin: top center;
  animation: rotate 4s linear infinite;
}

/* Radar-specific animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes emergency-pulse {
  0% { box-shadow: 0 0 12px rgba(255, 0, 0, 0.8); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 0, 1); }
  100% { box-shadow: 0 0 12px rgba(255, 0, 0, 0.8); }
}

/* =============================================
   Sidebar Toggle Button
============================================= */

.sidebar-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.sidebar-toggle:hover {
  background: var(--primary);
  color: var(--background-color);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.6);
}

/* Sidebar hidden state */
.sidebar-hidden {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.sidebar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Full-width layout when sidebar is hidden */
.sidebar-hidden ~ .radar-display-column {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* =============================================
   Filter Section Styles
============================================= */

.filter-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter-input {
  font-size: 12px;
  padding: 8px 12px;
  flex: 1;
  border: 1px solid var(--primary);
  background: var(--background-color);
  color: var(--text-color);
  font-family: 'NFPixels', monospace;
}

.filter-input:focus {
  outline: none;
  border-color: #00cc00;
  box-shadow: 0 0 5px rgba(51, 187, 51, 0.3);
}

/* =============================================
   Custom Checkbox Styles
============================================= */

/* Hide default checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary);
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  vertical-align: middle;
}

/* Checkbox checked state */
input[type="checkbox"]:checked {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.6);
}

/* Checkbox checkmark */
input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-color);
  font-size: 12px;
  font-weight: bold;
  font-family: 'NFPixels', monospace;
}

/* Checkbox hover state */
input[type="checkbox"]:hover {
  border-color: #00cc00;
  box-shadow: 0 0 5px rgba(51, 187, 51, 0.3);
}

/* Checkbox focus state */
input[type="checkbox"]:focus {
  outline: none;
  border-color: #00cc00;
  box-shadow: 0 0 8px rgba(51, 187, 51, 0.5);
}

/* Checkbox label styling */
label[for="configBeep"] {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 0;
}

label[for="configBeep"]:hover {
  color: #00cc00;
}

/* =============================================
   Combined Header Styles
============================================= */

h3 {
  margin: 0 0 15px 0;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Configuration header specific styling */
#configHeader h3 {
  margin-bottom: 8px; /* Reduced from 15px for better spacing */
}

/* Remove margin when configuration is collapsed */
#configHeader.collapsed h3 {
  margin-bottom: 0;
}

/* =============================================
   Container Styles
============================================= */

.card {
  font-size: 12px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary);
}

.config-toggle {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.config-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 800px;
  opacity: 1;
}

.config-content.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.config-toggle.collapsed {
  transform: rotate(90deg);
}

.filter-status {
  font-size: 11px;
  color: #ff9900;
  text-align: center;
  padding: 4px;
  border: 1px solid #ff9900;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 2px;
}

/* =============================================
   7-Segment LCD Display Styles
============================================= */

.lcd-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid var(--primary);
  background: rgba(0, 0, 0, 0.6);
}

.lcd-title {
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lcd-display {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001a00;
  border: 2px solid rgba(var(--primary-rgb), 0.5);
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: 
    inset 0 0 10px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(var(--primary-rgb), 0.2);
  position: relative;
  overflow: hidden;
}

.lcd-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.1) 0%,
    rgba(var(--primary-rgb), 0.05) 50%,
    rgba(var(--primary-rgb), 0.1) 100%
  );
  pointer-events: none;
}

.segment-display {
  display: flex;
  gap: 4px;
  align-items: center;
}

.segment-digit {
  position: relative;
  width: 24px;
  height: 40px;
  background: #001a00;
  border-radius: 3px;
  overflow: hidden;
}

.segment {
  position: absolute;
  background: rgba(var(--primary-rgb), 0.1);
  transition: background-color 0.2s ease;
}

.segment.active {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.6);
}

/* Segment positions for 7-segment display */
.segment-a { top: 2px; left: 4px; right: 4px; height: 3px; }
.segment-b { top: 5px; right: 2px; width: 3px; height: 15px; }
.segment-c { bottom: 5px; right: 2px; width: 3px; height: 15px; }
.segment-d { bottom: 2px; left: 4px; right: 4px; height: 3px; }
.segment-e { bottom: 5px; left: 2px; width: 3px; height: 15px; }
.segment-f { top: 5px; left: 2px; width: 3px; height: 15px; }
.segment-g { top: 50%; left: 4px; right: 4px; height: 3px; transform: translateY(-50%); }


/* Small LCD variant for refresh and scale */
.lcd-small .segment-digit {
  width: 18px;
  height: 30px;
}

.lcd-small .segment-a { top: 1px; left: 3px; right: 3px; height: 2px; }
.lcd-small .segment-b { top: 3px; right: 1px; width: 2px; height: 11px; }
.lcd-small .segment-c { bottom: 3px; right: 1px; width: 2px; height: 11px; }
.lcd-small .segment-d { bottom: 1px; left: 3px; right: 3px; height: 2px; }
.lcd-small .segment-e { bottom: 3px; left: 1px; width: 2px; height: 11px; }
.lcd-small .segment-f { top: 3px; left: 1px; width: 2px; height: 11px; }
.lcd-small .segment-g { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }

/* =============================================
   Overlay Styles for adsb.lol Links
============================================= */

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.overlay.active {
  display: flex;
}

.overlay-content {
  background: #1a1a1a;
  border: 2px solid var(--primary);
  border-radius: 8px;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
  position: relative;
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
}

.overlay-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

.overlay-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #1a1a1a;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  z-index: 10001;
  transition: all 0.2s ease;
}

.overlay-close:hover {
  background: var(--primary);
  color: #1a1a1a;
}

.overlay-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 16px;
}

/* =============================================
   JavaScript Disabled Overlay Styles
============================================= */

.javascript-disabled-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  pointer-events: none;
}

.javascript-disabled-message {
  font-family: 'NFPixels', monospace;
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  text-shadow: 
    0 0 15px rgba(var(--primary-rgb), 0.8),
    0 0 25px rgba(var(--primary-rgb), 0.6),
    0 0 35px rgba(var(--primary-rgb), 0.4);
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 40px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  max-width: 600px;
  line-height: 1.5;
  box-shadow: 
    0 0 30px rgba(var(--primary-rgb), 0.3),
    inset 0 0 20px rgba(var(--primary-rgb), 0.1);
  animation: javascript-message-pulse 3s ease-in-out infinite alternate;
}

@keyframes javascript-message-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(var(--primary-rgb), 0.3),
      inset 0 0 20px rgba(var(--primary-rgb), 0.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 
      0 0 40px rgba(var(--primary-rgb), 0.5),
      inset 0 0 25px rgba(var(--primary-rgb), 0.15);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(var(--primary-rgb), 0.3),
      inset 0 0 20px rgba(var(--primary-rgb), 0.1);
  }
}

/* =============================================
   Offline Overlay Styles
============================================= */

.offline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  pointer-events: none;
}

.offline-overlay.active {
  display: flex;
}

.offline-message {
  font-family: 'NFPixels', monospace;
  font-size: 4rem;
  color: #ff3333;
  text-shadow: 
    0 0 20px #ff3333,
    0 0 40px #ff3333,
    0 0 60px #ff3333;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 40px;
  border: 3px solid #ff3333;
  border-radius: 8px;
  animation: offline-pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 4px;
  box-shadow: 
    0 0 30px rgba(255, 51, 51, 0.5),
    inset 0 0 20px rgba(255, 51, 51, 0.2);
}

@keyframes offline-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(255, 51, 51, 0.5),
      inset 0 0 20px rgba(255, 51, 51, 0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 
      0 0 50px rgba(255, 51, 51, 0.8),
      inset 0 0 30px rgba(255, 51, 51, 0.3);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(255, 51, 51, 0.5),
      inset 0 0 20px rgba(255, 51, 51, 0.2);
  }
}

/* =============================================
   Responsive Offline Overlay Styles for Mobile
============================================= */

/* Tablet devices (768px and below) */
@media (max-width: 768px) {
  .offline-message {
    font-size: 3rem;
    padding: 15px 30px;
    letter-spacing: 3px;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .offline-message {
    font-size: 2rem;
    padding: 12px 24px;
    letter-spacing: 2px;
    border-width: 2px;
  }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
  .offline-message {
    font-size: 1.5rem;
    padding: 10px 20px;
    letter-spacing: 1px;
    margin: 0 10px;
  }
}

/* =============================================
   Responsive Table Styles for Mobile View
============================================= */

/* Hide ICAO hex, Distance, and First Seen columns on mobile */
@media (max-width: 768px) {
  /* Hide the first column (ICAO hex) */
  table tr th:nth-child(1),
  table tr td:nth-child(1) {
    display: none;
  }
  
  /* Hide the fifth column (Distance) */
  table tr th:nth-child(5),
  table tr td:nth-child(5) {
    display: none;
  }
  
  /* Hide the seventh column (First Seen) */
  table tr th:nth-child(7),
  table tr td:nth-child(7) {
    display: none;
  }
}

/* Additional mobile optimizations for smaller screens */
@media (max-width: 480px) {
  /* Make table more compact on very small screens */
  table {
    font-size: 10px;
  }
  
  table tr th,
  table tr td {
    padding: 4px 6px;
  }
}
