.btnNextPrev {
    width: 40%;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: rgb(240, 240, 240);
    height: 93.3vh;
    overflow-y: hidden;

}

.main {
    background-color: rgba(250, 250, 250, 0.10);
    height: 100%
}

.leftside_picture {
    position: absolute;
    width: 35%;
    height: 93.3%;
    overflow: hidden;
}

.leftside_img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: 58% 100%;
    transition: .75s ease-in-out;
}

.leftside_picture:hover .leftside_img {
    transform: scale(1.1);
    filter: blur(.5rem);
    transform-origin: 50% 50%;
    transition: .75s;
}

.rightside_container {
    position: absolute;
    left: 40%;
    height: 100vh;
    width: 55%;
}

.header {
    margin-left: 12%;
    display: flex;
    justify-content: center;
    gap: 5%;
    width: 85%;
    padding: 3%;
    border-bottom: 4px solid black;
}

.header_text {
    text-align: center;

}

.logo {
    width: 80%;
}

.patient_text {
    text-align: center;
    font-size: 3vw;
    margin: 5%;
}

.patientNote_text {
    padding: 2%;
    font-weight: bold;
    font-size: 1.5rem;
}

.patientresult_container {
    margin: 0 auto;
    background-color: rgb(212, 231, 255);
    margin-top: 4%;
    width: 70%;
    height: 37%;
    display: flex;
    justify-content: center;
    gap: 1%;
    border-radius: 15px;
}

.patient_note {
    border-radius: 15px;
    padding: 2%;
    width: 550px;
    background-color: rgba(255, 255, 255, 0.911);
    overflow-wrap: break-word;
    color: rgb(61, 61, 61);
    overflow: auto;
}

.patient_credentials {
    padding: 4%;
    flex-grow: 2;
}

#myImg {
    max-width: 100%;
}

.header_bold {
    font-size: 3rem;
}


@media only screen and (max-width: 767px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
    }

    .leftside_picture {
        display: block;
        position: relative;
        height: 20vh;
        width: 100vw;
    }

    .leftside_img {
        height: 50vh;
        width: 100%;
        object-fit: cover;
        object-position: 55%;
        transition: .75s ease-in-out;
    }

    .rightside_container {
        position: relative;
        left: 0;
        height: 70vh;
        width: 100%;
    }

    .header {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 0%;
        width: 100%;
        border-bottom: 0px solid black;
    }

    .header_text {
        text-align: center;
        font-size: .5rem;
        width: 100%;
    }

    .header_address {
        text-align: center;
        font-size: .5rem;
        width: 100%;
    }

    .header_bold {
        font-size: 1.3rem;
    }

    .logo {
        width: 80%;
    }

    .patient_text {
        text-align: center;
        font-size: 2rem;
        margin: 5%;
    }

    .patientresult_container {
        margin: 0 auto;
        background-color: rgb(87, 202, 115);
        margin-top: 10%;
        height: 60vh;
        display: flex;
        flex-direction: column;
        border-radius: 15px;
    }

    .patientresult_container p {
        font-size: 1.3rem;
    }

    .patient_note {
        border-radius: 15px;
        padding: 2%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.911);
        overflow-wrap: normal;
        color: rgb(61, 61, 61);
        font-size: 1.5rem;
        overflow: auto;
        height: 200px;
    }

    .patient_credentials {
        padding: 4%;
        flex-grow: 2;
    }

    .patientNote_text {
        padding: 1%;
        font-weight: bold;
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 768) {
    .patientresult_container {
        background-color: rgb(212, 231, 255);
        width: 83%;
        height: 55vh;
        flex-direction: column;
        border-radius: 15px;
        margin-left: 13%;
    }

    .patient_note {
        border-radius: 10px;
        padding: 1%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.911);
        overflow-wrap: break-word;
        color: rgb(61, 61, 61);
        font-size: 1.5rem;
        overflow: auto;
        height: fit-content;
    }

    .patient_credentials {
        padding: 2%;
        flex-grow: 2;
    }

    .patientNote_text {
        padding: 1%;
        font-weight: bold;
        font-size: 3.5rem;
    }
}