/* General Reset */
* { box-sizing: border-box; }
body { 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
  background-color: #f6f8fa; 
  color: #24292f; 
  margin: 0; 
  padding: 10px;
  line-height: 1.5;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  background: white;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h1 { 
  font-size: 1.25rem; 
  padding: 20px; 
  margin: 0;
  background: #ffffff;
  border-bottom: 1px solid #d0d7de;
}

.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  text-align: left;
  background-color: #f6f8fa;
  padding: 12px 15px;
  border-bottom: 2px solid #d0d7de;
  font-weight: 600;
}

td {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

tr:hover { background-color: #f9f9f9; }

.icon { margin-right: 8px; }

a {
  color: #0969da;
  text-decoration: none;
  font-weight: 500;
}

a:hover { text-decoration: underline; }

.size { text-align: right; font-family: monospace; color: #57606a; }

footer {
  padding: 15px;
  font-size: 12px;
  color: #57606a;
  text-align: center;
  background: #f6f8fa;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .hide-mobile { display: none; }
  body { padding: 0; }
  .container { margin: 0; border-radius: 0; border: none; }
  td, th { padding: 12px 10px; }
  h1 { font-size: 1.1rem; }
}