.nav_dev {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgb(0, 0, 0, 0.2);
}

.nav_items_dev {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    position: absolute;
    align-items: center;
    gap: 20px;
}

.nav_items_dev *{
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: #88847F;
}

.heading_text_dev{
    letter-spacing:-0.03em;
    font-weight: 700;
}

.body_text_dev {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgb(0, 0, 0, 0.55);
}

.semi_bold_text_dev {
    font-weight: 600;
    letter-spacing: -0.005em;
}

.footer_link {
    text-decoration: none;
}

.footer_link:hover {
    color: #000000;
}

.icon_dev:hover {
    color: #000000;
}

.button_dev {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    width: 200px;
    height: 50px;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5%;
}

.button_primary_dev {
    background: #39932C;
    box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.05);
    border: 2px solid #39932C;
    color: #FFFFFF;
}

.button_secondary_dev {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(57, 147, 44, 0.3);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    color:#39932C;
}

.button_blue_dev {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(10, 72, 191, 0.3);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    color: #0A48BF;
}

.button_orange_dev {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(253, 126, 20, 0.3);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    color: #fd7e14;
}

.button_container_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
}

.info_container_dev {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.header_colour_box {
  width: auto;
  height: 328px;
  background-color: #FD7E14;
}

.patients_grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 16px;
  padding: 0px 8px 0px 8px;
}

.patients_grid div {
  border-top-style: solid;
  border-color:#FD7E14;
  border-width: 2px;
  padding: 0px 8px 0px 8px;
  font-size: 20px;
  text-align: left;
}