.dashboard {
  display: flex;
}
.dashboard-navigation {
  flex-basis: 265px;
  flex-grow: 0;
  flex-shrink: 0;
}
.dashboard-content {
  margin-left: 30px;
}
a > label.tab-label {
  text-decoration: none;
  color: white;
}
div.tab a {
  text-decoration: none;
}
div.dashboard-content h1.heading__title {
  margin-top: 0;
  font-size: 1em;
  text-transform: uppercase;
  font-family: "Benton", sans-serif;
  padding: 9px 8px 5px;
  background-color: #ccc;
  width: 100%;
  display: inline-block;
}
.user-registration p {
  padding: 10px;
}

/* Accordion styles */
.dash-tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.dash-tabs .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.dash-tabs .tab-label {
  display: flex;
  justify-content: space-between;
  padding:0.81em;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}
.dash-tabs .tab-label:hover {
  background: #1a252f;
}
.dash-tabs .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.dash-tabs .tab-label.tab-no-child::after {
  content: none;
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.dash-tabs .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}
.dash-tabs .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.dash-tabs .tab-close:hover {
  background: #1a252f;
}

.dash-tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.dash-tabs input:checked + .tab-label {
  background: #1a252f;
}
.dash-tabs input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.dash-tabs input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 0;
}
.dash-tabs .tab-content ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}
.dash-tabs .tab-content ul li {
  padding: 0.3em 1em;
}
.dash-tabs .tab-content ul li:hover {
  background-color: #ddd;
  color: #1a252f;
}
.dash-tabs .tab-content ul li a {
  color: #2c3e50;
  display: inline-block;
  width: 100%;
}
.dash-tabs .tab-content ul li a:hover {
  color: #1a252f;
}
