/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #181818;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

h1 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #00c9c9;
  text-align: center;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 700px;
}

.repo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #202020;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.repo-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.repo-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00e0e0;
  text-align: left;
  flex-grow: 1;
}

.repo-actions {
  display: flex;
  gap: 10px;
}

.repo-button {
  padding: 8px 15px;
  font-size: 0.95rem;
  color: #f0f0f0;
  background: #333;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.repo-button:hover {
  transform: translateY(-2px);
}

.repo-button.repo {
  background: #444;
}

.repo-button.repo:hover {
  background: #0077cc;
}

.repo-button.pages {
  background: #444;
}

.repo-button.pages:hover {
  background: #00cccc;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  text-align: center;
  color: #aaaaaa;
}

.footer a {
  color: #00cccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.section-title {
  font-size: 1.5rem;
  color: #00e0e0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}
