body {
    margin: 0;
    padding: 0;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f6fafa !important;
}

.dashboard-info-container {
    font-size: 30px;
    margin-right: 50px;
}

.bold-info {
    font-weight: bold;
}

.topper-container {
    margin: 0;
    padding: 0;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}
.back-to-top a {
    color: #fff;
    background-color: #333;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out; /* Adicionando a transição */
}
.back-to-top a:hover {
    transform: scale(1.2); /* Mudança de escala no hover */
}