/* Imposta margini a zero e stili base */
html, body {
    margin: 0;
    background: #fafafa;
    color: black;
    font-family: 'Outfit', sans-serif;
}

/* Stile per l'header della pagina */
header {
    padding: 1rem;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
}

/* Imposta dimensioni del contenitore del grafo */
#network {
    width: 100%;
    height: calc(100vh - 60px);
}

/* stile bottone login */
nav button {
    background: #dbdbdb; /* colore del bottone */
    border: none; /* bordo bottone */
    border-radius: 999px; /* Rende bottone ovale */
    padding: 0.5rem 1.25rem;
    color: black;
    margin-left: 1rem;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    transition: background 0.2s ease;
}

/* stile bottone login on hover */
nav button:hover {
    background: #cacaca; 
}