body {
  margin: 0;
  padding: 0;
  background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);

  color: #202124;

  font-family:
    Inter,
    "Google Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Container Layout */
.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

/* Individual Repo Card */
.repo-card {
  background: #ffffffa8;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Card Hover Animation */
.repo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #0366d6;
}

/* Typography styling */
.repo-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.repo-card h3 a {
  color: #0366d6;
  text-decoration: none;
}

.repo-card h3 a:hover {
  text-decoration: underline;
}

.repo-card p {
  color: #1c2127;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex-grow: 1; /* Ensures buttons/stats align at the bottom */
}

/* Repository Metadata Stats */
.repo-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #fd0c0c;
  border-top: 1px solid #f1f2f4;
  padding-top: 1rem;
}

.repo-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
