body {
  font-family: Inter, sans-serif;
  background-color: #fff;
  color: #333;
}

.switcher {
  display: grid;
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 3rem 1.5rem;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

header.top {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5rem;
  padding-left: 4rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: white;
  background-color: #0051a4;
}
header.top h1 {
  margin: 0 0;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
header.top .icon svg {
  width: 3rem;
  height: auto;
}

.progress-bar {
  padding: 2rem;
  margin: 2rem auto;
}
.progress-bar header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.progress-bar .bar progress {
  width: 100%;
  height: 50px;
  color: #0051a4;
}
.progress-bar .legend-start,
.progress-bar .legend-end {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: bold;
}
.progress-bar .legend-start .bigger {
  font-size: 3rem;
}
.progress-bar .legend-end .bigger {
  font-size: 2.5rem;
}
.progress-bar footer {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.blue-icon svg {
  stroke: #0051a4;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 95%;
  margin: 2rem;
}
.stats-grid .card {
  display: flex;
  justify-content: space-between;
}
.stats-grid .card .info .title {
  font-weight: bold;
  font-size: 1.2rem;
  padding-bottom: 2.5rem;
}
.stats-grid .card .accented {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.form-and-latest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem auto;
  max-width: 95%;
}

.input-group {
  padding: 0.5rem 0;
}
.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.input-group input,
.input-group select,
.input-group textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
  height: 2rem;
}

.full-centered {
  width: 100%;
  padding-top: 30%;
  padding-bottom: 30%;
  text-align: center;
}

button {
  width: 100%;
  border-radius: 10px;
  height: 2.5rem;
  color: #fff;
  background-color: #0051a4;
  font-weight: bold;
}

.list table {
  width: 95%;
  border-collapse: collapse;
}
.list table td {
  padding: 0.4rem 0.9rem;
  border: 1px solid #ccc;
  font-weight: bold;
}

.chat {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  max-width: 95%;
  margin: 2rem auto;
}

.messages table td {
  vertical-align: top;
  padding: 0.25rem 0.5rem;
}

@media (width <= 650px) {
  .switcher {
    display: flex;
    flex-direction: column-reverse;
  }
  .progress-bar {
    margin-bottom: -4rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-and-latest {
    grid-template-columns: 1fr;
  }
  .chat {
    grid-template-columns: 1fr;
  }
}