.nav_dev {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    box-shadow: 0px 4px 6px rgb(0, 0, 0, 0.2);
}

.nav_items_dev {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    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: 500;
    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 a{
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_link a:hover {
    text-decoration: underline #333333 1px;
}

.icon_dev:hover {
    transform: scale(0.95);
}

.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%;
    transition: tranfrom 0.3s ease-in-out;
}

.button_dev:hover {
    transform: scale(0.97);
    cursor: pointer;
}

.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 {
    background-color: #FD7E14;
    padding-bottom: 90px;
}

.header_colour_box_blue {
    background-color: #0a48bf;
    padding-bottom: 90px;
}

.patients_grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 16px;
}

.patients_grid div {
  border-top: 1px solid #FD7E14;
  font-size: 20px;
  text-align: left;
  padding: 8px;
}

.card_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 12px 32px rgba(0, 0, 0, 0.06);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: height 0.4s ease;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
}

.card_overlay .card_title {
    color:#0A48BF;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
    margin-bottom: -6px;
}

.card:hover .card_overlay {
    height: 100%;
}