body {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 3%;
    padding: 0;
}

img {
    border-radius: 10%;
}

textarea {
    flex-shrink: 0;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 20px;
    background-color: #f8f8f8;
    resize: none;
    margin: 20px 0;
    font-size: 30px;
}

footer {
    bottom: 0;
    width: 100%;
    margin-top: 50px;
    text-align: center;
    font-size: 15px;
}

input {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

nav {
    overflow: hidden;
    background-color: #333;
    border-radius: 5px;
}

nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

.small {
    font-size: 20px;
    flex-direction: row !important;
    gap: 15px;
}

.small h2 {
    font-size: 20px;
}

.small svg {
    height: 30px;
}

.summaryContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(270deg, lavender, lightblue);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    border-radius: 20px;
    padding: 20px;
}

.subHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaderContainer {
    display: none;
    justify-content: center;
    align-items: center;
    background: #121FCF;
    background: linear-gradient(to right, #121FCF 0%, #CF1512 100%);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.combinedContainer {
    display:flex;
    gap: 20px;
    margin: 20px 0px
}

.combinedContainer textarea[id^="labResults"] {
    margin-right: 20px;
    align-self:flex-end;
}

@keyframes h4 {
    100% {
        background-position: -23px 0px, 12px 35px
    }
}