/* Container & Table Structure */
.download-container {
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
sans-serif;
  background-color: #ffffff;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Header Styling */
.download-table th {
  background-color: #f8fafc;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-bottom: 1px solid #e2e8f0;
}

/* Row & Cell Styling */
.download-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  font-size: 0.875rem;
  vertical-align: middle;
}

.download-table tbody tr:last-child td {
  border-bottom: none;
}

/* Hover State */
.download-table tbody tr:hover {
  background-color: #f8fafc;
  transition: background-color 0.15s ease-in-out;
}

/* Badges & Monospace Code Elements */
.os-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 8px;
}

.os-badge.mac { background: #e0f2fe; color: #0369a1; }
.os-badge.linux { background: #fef3c7; color: #b45309; }

.version-tag, .hash-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
monospace;
  font-size: 0.8125rem;
  background-color: #f1f5f9;
  padding: 3px 6px;
  border-radius: 4px;
  color: #334155;
}

/* Action Button */
.btn-download {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn-download:hover {
  background-color: #1d4ed8;
}
