body {
  display: flex;
  flex-direction: column;
  margin: 20px;
  border: 1px solid #333;
  padding: 10px;
}
.container {
  width: 100%;
}

.small {
  font-size: 1.0rem;
}
.medium {
  font-size: 1.5rem;
}
.large {
  font-size: 2.0rem;
  word-break: normal !important;
}
.error {
  font-size: 1.5rem;
  color: red;
}
.big-link {
  color: black;
  font-size: 1.25rem;
}
.link {
  color: blue;
}
.header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.title {
  max-width: 60%;
  word-break: break-word;
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
}
.nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 420px) {
  .nav {
    flex-direction: column;
    gap: 8px;
  }
  .title {
    display: flex;
    flex-direction: column;
  }
}
.repo-list {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.repo-list th,
.repo-list td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.repo-list th {
  margin-top: 10px;
  background: #f4f4f4;
}
.repo-list tr:nth-child(even) {
  background: #f4f4f4;
}
.repo-list tr:nth-child(odd) {
  background: #ffffff;
}
.overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  word-break: break-all;
}
.cutoff {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  word-break: break-all;
}
.info-box {
  background: #faf5f5;
  border: 1px solid #eee;
  padding: 10px;
  margin-top: 20px;
  word-break: break-word; 
}
.diff-box {
  background: #faf5f5;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word; 
}
.code {
  background: #faf5f5;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word; 
}
form {
  background: #faf5f5;
  border: 1px solid #eee;
  padding: 10px;
}
label {
  display: block;
  margin-bottom: 12px;
}
input[type="text"], textarea, select {
  font-size: 1rem;
  padding: 4px 8px;
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
}
textarea { 
  resize: vertical; 
  min-height: 60px; 
}
button[type="submit"] {
  margin-top: 10px;
  padding: 6px 20px;
  border-radius: 4px;
  border: 1px solid #aaa;
  background: #eaeaea;
  color: #222;
  font-size: 1rem;
}


.footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #444;
  padding: 20px;
  margin-top: 32px;
  text-align: center;
}
