.delete-checkbox {
  float: right;
  font-size: 50%;
}

.searchbar {
  margin: 0 auto;
  margin-bottom: 3rem;
}

.searchbar .searchbar-input {
  min-width: 100%;
}

.searchbar .fa-search {
  color: var(--gray-medium);
  float: right;
  position: relative;
  right: 14px;
  top: 25px;
}

.required::after {
  content: "*";
  color: var(--alert); /* Styles the asterisk in red */
  margin-left: .125rem; /* Adds a small space between the label text and the asterisk */
}

/* Basic styling for all placeholder text */
::placeholder {
  font-style: italic;
  opacity: 1;
}

.form-card {
  border: 1px solid black;
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem 0;
}