body {
    margin: 0;
    padding-top: 130px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    background-color: #7f7dfc;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #070494;
    color: white;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100px;
    height: auto;
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: white;
    text-decoration: none;
}


.menu li {
    position: relative;
}

.submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #070494;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
}

.submenu li a {
    display: block;
    padding: 10px;
}

.dropdown.open > .submenu {
    display: block;
}

.medaglie {
    width: 25px;
    height: auto;
    vertical-align: middle;
}

table {
    width: 20%;
    table-layout: auto;
    border-collapse: collapse;
}

td:first-child {
  width: 45%;
}

th, td {
    text-align: center;
}

th {
    background-color: blue;
    color: white;
    font-size: 0.8em;
    font-weight: normal;
}

.titoli {
    margin-left: 1.8%;
    color: blue;
    font-size: 1.2em;
    font-weight: bold;
}

.tabella_home {
    width: 32%;
    color: white;
}

.tabella_home tr {
    height: 1.5em;
}

.tabella_lodi tr {
    height: 1.5em;
}

.tabella_lodi {
    width: 20%;
    color: white;
}


.tabella_voti {
    border-collapse: separate;
    border-spacing: 0 12px; /* 8px tra le righe */
    width: 25%;
    color: white;
}

.tabella_medaglie {
    border-collapse: separate;
    border-spacing: 0 12px; /* 8px tra le righe */
    width: 20%;
    color: white;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

input {
    width: 3.3em;
    height: 2em;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 20;
    font-weight: bold;
    color: #070494;
}

select[name="votante"] {
    width: 150px;
    height: 35px;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 6px;
    background-color: #3a40b5;
    cursor: pointer;
    color: #fff;
}

select[name="categoria"] {
    width: 150px;
    height: 35px;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 6px;
    background-color: #971a69;
    cursor: pointer;
    color: #fff;
}


@media (hover: hover) and (pointer: fine) {
    .dropdown:hover > .submenu {
        display: block;
    }
}

@media (max-width: 600px) {

    body {
        padding-top: 50px;
        font-size: 18px;
        margin: 10px;
    }

    .navbar {
        padding: 5px 10px;
    }

    .logo img {
        width: 40px;
    }

    .hamburger {
        background: none;
        border: none;
        color: white;
        font-size: 22px;
        cursor: pointer;
        display: block;
        padding: 0;
        width: 30px;
        height: 30px;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #070494;
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        padding: 15px;
    }

    .menu.show {
        display: flex;
    }

    .submenu {
        position: static;
        display: none;
        padding-left: 20px;
    }

    .dropdown.open > .submenu {
        display: block;
    }

    .medaglie {
        width: 20px;
    }

    table {
        width: 60%;
        table-layout: auto;
        border-collapse: collapse;
        margin-left: auto;
        margin-right: auto;
    }

    td:first-child {
        width: 45%;
    }

    .titoli {
        display: block;
        text-align: center;
    }

    .tabella_medagliere {
        width: 80%;
    }

    .tabella_home {
        width: 90%;
    }

    .tabella_lodi {
        width: 70%;
    }

    .tabella_voti {
        width: 100%;
    }

    .tabella_medaglie {
        width: 70%;
    }

    select {
        margin-left: 14%;
    }

    button:not(.hamburger) {
        margin-left: 15%;
    }
}


button:not(.hamburger) {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: linear-gradient(
    0deg,
    #070494 0%,
    #5956ff 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 15px;
}