/* ============ FONT SIZES ============ */
.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-36 {
  font-size: 36px;
}

.fs-40 {
  font-size: 40px;
}

/* ============ TEXT COLORS ============ */

.text-resumetested-blue {
  color: #0076fe;
}

.text-resumetested-orange {
  color: #ee7447;
}

/* ============ BACKGROUND COLORS ============ */

.bg-resumetested-lightblue {
  background-color: #e9edf8;
}

.bg-resumetested-lightorange {
  background-color: #f3e0dd;
}

.bg-resumetested-lightyellow {
  background-color: #fef4eb;
}

/* ============ OTHER ============ */

.create-new-card {
  background-color: #e9edf8;
  padding: 10px;
  border: 0.8px solid #0076fe;
  border-radius: 8.5px;
  color: #0076fe;
  height: 312px;
  width: 239px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.create-new-card a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.create-new-card a:hover {
  color: #0076fe;
}

.existing-item-card {
  background-color: #fff;
  border-radius: 8.5px;
  color: #333;
  height: 312px;
  width: 239px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.image-section {
  height: 80%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-height: 100%;
  max-width: 100%;
}

.border-between {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.text-section {
  height: 20%;
  padding: 10px 20px;
  box-sizing: border-box;
}

.additional-service-intro {
  border-radius: 6px 40px 6px 40px;
  border: 1px solid rgba(0, 118, 254, 0.35);
}

.additional-service-cards {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 300px;
  height: 250px;
  border: 1px solid #d0d5dd;
  border-radius: 26px;
  padding: 20px;
  background-color: white;
}

.additional-service-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 10px;
}

.why-it-works-card {
  border-radius: 40px 0 40px 0;
  border: 1px solid rgba(238, 116, 71, 0.3);
}

.custom-heading {
  font-size: 18px;
  font-weight: bold;
  font-family: serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid lightgray;
  width: 100%;
}

.custom-heading::after {
  content: "";
  display: block;
  width: 133px;
  height: 3px;
  background-color: #0076fe;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.custom-status-select {
  display: flex;
  gap: 10px;
  list-style-type: none;
  padding: 0;
}

.custom-status-select a {
  width: 100px;
}

.custom-file-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3e0dd;
  color: #ee7447;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.in-review-badge {
  width: 86px;
  height: 38px;
  padding: 5px 10px;
  color: #ee7447;
  border: 1px solid #ee7447;
  border-radius: 30px;
  text-wrap: nowrap;
}

.completed-badge {
  width: 86px;
  height: 38px;
  padding: 5px 10px;
  color: #0076fe;
  border: 1px solid #0076fe;
  border-radius: 30px;
  text-wrap: nowrap;
}
