.show-all__form {
  display: flex;
  justify-content: center;
}

.show-all__button {
  background: none;
  border: 0;
  color: blue;
  padding: 0;
}

.show-all__button:hover:not(:disabled) {
  cursor: pointer;
  font-weight: 600;
}

.show-all__button:disabled {
  cursor: wait;
  color: grey;
}

.mode__label {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.status__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.panel__container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.panel__container:before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  right: 0;
  background: var(--color-grey);
  height: 8px;
  border-radius: 4px;
}

.panel__row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.panel__row--one {
  position: relative;
}

.panel__row--two {
  display: flex;
}

.panel__line-colour {
  background-color: gray;
  border-radius: 0.2rem;
  height: 2.5rem;
  width: 2rem;
  transition: width 500ms ease;
}

.panel__row--one:hover .panel__line-colour {
  transition: width 500ms ease;
  width: 3rem;
}

/*
.panel__line-name {
}
*/

.panel__line-link {
  color: blue;
  font-weight: 500;
  transition: color 500ms ease;
}

.panel__line-link:hover {
  font-weight: 550;
  text-decoration: none;
}

.panel__line-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.panel__status-colour {
  background-color: #add8e6;
  border-radius: 0.2rem;
  width: 2rem;
  align-self: stretch;
  flex: 0 0 2rem;
}

.panel__status-colour--closed,
.panel__status-colour--major {
  background-color: rgb(255, 201, 201);
}

.panel__status-colour--minor {
  background-color: rgb(252 229 187);
}

.panel__status-colour--good {
  background-color: rgb(190 232 192);
}

.panel__status-colour--unknown {
  background-color: #eaeaea;
}

.panel__status-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel__status {
  font-weight: 500;
}

.panel__since {
  font-size: 0.8rem;
}

.panel__description {
  font-size: 0.9rem;
}
