* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #363636;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #53C6DB;
}

.container {
    width: 100%;
    height: 100vh;
    margin-top: 50px;
    padding: 20px;
    background-color: #fff;
}


.titulo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.voltar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.btn {
    padding: 5px;
    color: #fff;
    font-size: 18px;
    margin: 0;
    border: none;
    background: none;
}

.btn-voltar .btn {
    width: 40px;
    margin: 5px;
    color: #fff;
}

.div-hidden {
    padding: 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.input-search {
    width: 70%;
    height: 28px;
    padding: 5px;
    background-color: #fff;
    border: 0.5px solid #ddd;
    border-radius: 5px;
    font-size: small;
    outline: none;
}

.btn-search {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 0.5px solid #ddd;
    border-radius: 5px;
}

.health-center {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.health-true:hover {
    border: 1px solid #27ae60;
}

.health-false:hover {
    border: 1px solid #e74c3c;
}

h3 {
    color: #4F4F4F;
}

p {
    color: #555;
}

.medication-availability.true {
    color: #27ae60;
}

.medication-availability.false {
    color: #e74c3c;
}

.footer {
    width: 100%;
    bottom: 0px;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.links {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.links a {
    font-size: small;
}

.div-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rede {
    padding: 8px;
    border-radius: 5px;
}

.app {
    padding: 8px;
    font-size: small;
}