#container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

#topbar > img {
  height: 32px;
}
#topbar > h2 {
  display: inline-block;
}

#repos {
  padding: 8px;
}
#repos > div {
  padding: 4px;
}
#repos > .header {
  display: grid;
  grid-template-columns: 1fr 200px 200px 25px;
  background-color: #4caf50;
  color: white;
}
#repos > .row {
  display: grid;
  grid-template-columns: 1fr 200px 200px 25px;
  border-bottom: 1px solid #ddd;
  font-family: monospace;
}
#repos > .row:hover {
  background-color: #f5f5f5;
}
#repos > .row > .delete {
  cursor: pointer;
  color: red;
  font-weight: bold;
  font-size: 1.2em;
}
#repos > .row > button.delete:disabled {
  color: #ccc;
  cursor: not-allowed;
}
#repos > .add {
  display: grid;
  grid-template-columns: 1fr 200px 200px 25px;
}
#repos > .add > input {
  padding: 4px;
}
#repos > .add > button {
  padding: 4px;
  cursor: pointer;
  color: green;
  font-weight: bold;
  font-size: 1.2em;
}

#pr-todo {
  display: none;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
#pr-todo > .header {
  padding: 4px;
  background-color: #e36209;
  color: white;
  font-weight: bold;
  border-radius: 4px;
}
#pr-todo > .row {
  display: block;
  padding: 4px;
  border-bottom: 1px solid #ddd;
  font-family: monospace;
  text-decoration: none;
  color: #0366d6;
}
#pr-todo > .row:hover {
  background-color: #f5f5f5;
}

#instructions {
  margin-top: 20px;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
