body {
    font-family: Arial, sans-serif;
    background-color: #f5f7ff;
    text-align: center;
    margin: 0;
}

img.favicon {
    width: 100px;
    height: 100px;
}

.navbar {
    background: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar a {
    text-decoration: none;
    color: #444;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.navbar a.active {
    background-color: #6658d3;
    color: white;
}

.container {
    background: white;
    width: 50%;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    flex-direction: column; /* Altera para coluna para posicionar o botão abaixo */
    align-items: center; /* Centraliza os botões */
    gap: 10px;
}

/* Estilo do botão de download */
#downloadBtn {
    margin-top: 1.5rem; /* Adiciona mais espaço acima do botão */
    width: 100%; /* Ocupa a largura total do container */
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #28a745; /* Verde */
    color: white;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efeito de hover no botão de download */
#downloadBtn:hover {
    background-color: #218838; /* Verde mais escuro */
    transform: translateY(-2px); /* Levanta o botão levemente */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona sombra */
}

/* Estilo para outros botões */
button {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #6658d3; /* Roxo */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5549b2; /* Roxo mais escuro */
}