.red-text {
  background-color: red;
  color: white;
  padding: 0.5rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-weight: bold;
}
.yellow-text {
  background-color: rgb(187, 187, 0);
  color: white;
  padding: 0.5rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-weight: bold;
}
.driver-text {
  background-color: rgb(4, 151, 11);
  color: white;
  padding: 0.5rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-weight: bold;
}

.driverOptions {
  display: flex;
  flex-direction: column;
}

.cardContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.licenseImg {
  height: 200px;
  width: 250px;
  object-fit: cover;
}

.changeInfo {
  border-radius: 0;
}
.changeLicense {
  border-radius: 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.deleteDriver {
  border-radius: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.hidden {
  display: none;
}
