html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #aaaaee, #ffffff, #ffaaaa);
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toolbar {
    background-color: #002855;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toolbar h1 {
    margin: 0;
    font-size: 18px;
}

.footer {
    background-color: #002855;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content img {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

/*.content button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.content button:hover {
    background-color: #1558b2;
}
*/


/* Logo Cerchio */
.logo-circle {
    width: 74px; /* Dimensione del cerchio */
    height: 74px;
    background-color: #f7fbff; /* Sfondo chiaro */
    border-radius: 50%; /* Forma circolare */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leggera ombra */
    border: 2px solid #00f; /* Bordo dorato */
}

    .logo-circle .logo {
        max-width: 60px; /* Dimensione massima del logo */
        max-height: 60px; /* Per evitare deformazioni */
        width: auto;
        height: auto;
    }


.page-box {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.14);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-top: 0px;
    border: 1px solid #ccc;
    margin-bottom: 0px;
    align-self:center;
}

.dashboard-box {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 20px;
}
