html {
  font-size: 16px;
}

.content {
    width: 70%;
    margin: auto;
}

.retry-div {
    display: none;
    margin: auto;
    margin-top: 1vw;
}

.retry-div > button {
    display: block;
    margin: auto;
    margin-top: 0.5vw;
}

.retry-div > p {
    font-size: 20px;
    font-weight: 600;
    color: red;
    margin: auto;
    text-align: center;
}

.success-div {
    margin: auto;
    margin-top: 1vw;
}

.success-div > button {
    display: block;
    margin: auto;
    margin-top: 1vw;
}

.success-div > p {
    font-size: 24px;
    font-weight: 600;
    color: green;
    margin: auto;
    text-align: center;
}

.otp-div {
    margin: auto;
    margin-top: 1vw;
}

.otp input {
    margin-bottom: 1vw;
}

#invianumero {
    margin-top: 0.4vw;
}

.table-div {
    display: block;
    max-height: 25vw;
    overflow-y: scroll;
    width: auto;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.header {
    text-align: center;
    margin-top: 1vw;
    margin-bottom: 1vw;
    display: block;
}

.text-div {
    margin-bottom: 2vw;
    display: flex;
}

textarea {
    resize: none;
}

.note {
    width: 75%;
}

.buttons-div {
    width: 20%;
    margin-right: 0;
    margin-left: auto;
}

.select-button {
    display: block;
    margin-top: 0.2vw;
    margin-right: 0;
    width: 100%;
}


.table-header {
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    background-color: white;

}

.table {
    user-select: none;
    border-collapse: separate;
    border-spacing: 0;
}

.table > thead > tr > th {
    border-bottom: 2px solid;
}


@media (max-width: 1600px) {
    .content {
        width: 80%;
        margin: auto;
    }

    .table-div {
        max-height: 40vw;
    }

    .note {
        width: 70%;
    }

    .buttons-div {
        width: 25%;
    }
}

@media (max-width: 1100px) {
    .content {
        width: 90%;
        margin: auto;
    }

    .table-div {
        max-height: 40vw;
    }

    .note {
        width: 65%;
    }

    .buttons-div {
        width: 30%;
    }

    img {
        max-height: 7vw;
    }
}

@media (max-width: 750px) {
    .content {
        width: 90%;
        margin: auto;
    }

    .table-div {
        max-height: 80vw;
    }

    .text-div {
        display: block;
    }

    .note {
        width: 100%;
        height: 25vw;
    }

    .buttons-div {
        margin-top: 1vw;
        width: 100%;
        display: flex;
    }

    .select-button {
        margin-inline: 1px;
    }

    html {
        font-size: 55%;
    }
}