body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

#navbar {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid #E9EAEC;
}

#navbar div {
    flex: 1;
    display: flex;
}

#navbar a {
    text-decoration: none;
    color: black;
}

#navbar i {
    font-size: 30px;
}

#title {
    font-size: 32px;
    font-family: "Lobster", sans-serif;
    justify-content: center;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}

#account-btn {
    justify-content: flex-end;
}

#account-btn a {
    background-color: white;
    border: 1px solid #E9EAEC;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
}

#account-btn a:first-child {
    margin-right: 1rem;
}

#account-btn a:last-child {
    background-color: #C3E0E5;
    border: 1px solid #C3E0E5;
}

#search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
}

#input {
    display: flex;
    align-items: center;
    border: 1px solid #7c8188;
    border-radius: 5px;
    padding: 0.4rem;
}

#input input {
    border: none;
    border-right: 1px solid #d4d6d8;
    margin-right: 0.5rem;
    font-size: 20px;
    font-family: "Lisu Bosa", serif;
    height: 35px;
    width: 300px;
    padding: 0rem 0.3rem;
}

#input input:focus {
    outline: none;
}

#input input::placeholder {
    color: #d4d6d8;
    font-family: "Lisu Bosa", serif;
}

#input a {
    text-decoration: none;
    width: 40px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#input a:first-of-type {
    margin-right: 0.5rem;
    width: 50px;
}

#input a i {
    font-size: 20px;
    color: #7c8188;
}

#input a:hover {
    background-color: #C3E0E5; 
    border-radius: 5px;
}

#main-content {
    padding: 2rem;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

#med-info {
    margin-right: 3rem;
    box-shadow: 2px 2px 2px 2px #bec0c4;
    padding: 1rem 2rem;
    min-width: 210px;
    height: fit-content;
}

#med-info p {
    margin: 0;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
    line-height: 25px;
}

#med-info p i {
    color: #C3E0E5;
}

#reviews {
    background-color: #E9EAEC;
    padding: 1rem 2rem;
}

.review-x {
    background-color: white;
    box-shadow: 2px 2px 2px 2px #bec0c4;
    padding: 1rem;
    margin: 1rem 0rem;
    width: 600px;
}

.review-x > div {
    display: flex;
    margin-bottom: 0.5rem;
}

.review-x div div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 2rem;
    background-color: #C3E0E5;
    background: linear-gradient(45deg,rgba(195, 224, 229, 1) 0%, rgba(194, 224, 227, 1) 25%, rgba(209, 232, 218, 1) 52%, rgba(224, 197, 224, 1) 76%);
}

.review-x div .user-name {
    font-weight: bold;
}

.review-x p i {
    color: #C3E0E5;
    font-size: 18px;
}

.review-x div p {
    margin-right: 2rem;
    margin-top: 0.6rem;
    font-size: 20px;
}

.review-x p {
    margin: 0;
    font-size: 18px;
    font-family: "Lisu Bosa", serif;
}