.dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #363636;
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.top-image {
    width: 100%;
    max-width: 150px; /* Aumenta o tamanho da imagem no topo */
    margin-bottom: 10px;
}

.bordered-div {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px; /* Aumenta o padding */
    margin-bottom: 5px;
}

.left-photo {
    width: 80px; /* Aumenta o tamanho da imagem */
    height: 80px; /* Aumenta o tamanho da imagem */
    margin-right: 10px; /* Aumenta o espaçamento à direita */
    border-radius: 18%; /* Torna a imagem mais redonda */
}

.text-block {
    text-align: left;
}

.text-block p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.verification-seal {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.verification-icon {
    width: 13px;
    height: 13px;
    margin-right: 5px;
}

.bottom-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left; /* Alinha o texto à esquerda */
}

.bottom-image {
    width: 50px; /* Aumenta o tamanho da imagem */
    height: 50px; /* Aumenta o tamanho da imagem */
    margin-right: 10px;
}

.bottom-text {
    margin: 0;
    text-align: left; /* Alinha o texto à esquerda */
    
}

.install-button {
    padding: 15px; /* Aumenta o padding do botão */
    background-color: #028760;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 40px); /* Faz o botão ocupar a largura do diálogo com margem */
    margin: 20px; /* Define a margem ao redor do botão */
}
