.contentFrame {
  border: 3px solid var(--primary);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.contentBody {
  display: grid;
  background-color: white;
  padding: 24px;
  gap: 16px;
}

.contentActions {
  display: flex;
  justify-content: flex-end;
  background-color: var(--light);
  padding: 24px;
  gap: 12px;
}

.contentGap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toolbar {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0rem;
}

.horizontalItems {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  color: #787878;
  background-color: white;
  padding: 1.5rem;
}

.item {
  flex: 30%;
  padding-bottom: 1rem;
}

.title {
  color: #2e4789;
  font-weight: 700;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .item {
    flex: 100%;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.modal {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
