/* 1. BASE STYLES & TYPOGRAPHY */
body {
  background-color: #0a0a0a; 
  color: #e0e0e0;            
  font-family: 'Segoe UI', Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 40px 20px;
  
  /* Firefox Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #00ff66 #1a1a1a; 
}

h1, h2, h3 {
  color: #00ff66; 
  margin-top: 0;
}

/* 2. CUSTOM GREEN SCROLLBARS (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a; 
}
::-webkit-scrollbar-thumb {
  background-color: #00ff66; 
  border-radius: 10px;
  border: 3px solid #1a1a1a; 
}
::-webkit-scrollbar-thumb:hover {
  background-color: #00cc52; 
}

/* 3. THE "TABLED" PAGE LAYOUT (CSS Grid) */
.page-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual "Tabled" Content Boxes */
.content-box {
  background-color: #141414;
  border: 1px solid #222;
  border-top: 4px solid #00ff66; 
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 255, 102, 0.05); 
  transition: transform 0.2s ease;
}

.content-box:hover {
  transform: translateY(-5px); 
}

/* 4. ACTUAL HTML DATA TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #141414;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  background-color: #1a1a1a;
  color: #00ff66;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

tr:hover td {
  background-color: #1f1f1f; 
}