html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
}

input,
select,
textarea {
    max-width: 400px;
}



.ami-div-error {
    width: 100%;
    border-radius: 5px;
    background-color: darkorange;
    padding: 8px 5px 5px 20px;
}


table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    table th {
        border: 1px solid lightgray;
        padding: 8px;
        text-align: center;
        background-color: darkcyan;
        color: white;
    }

    table td {
        border: 1px solid lightgray;
        padding: 8px;
        text-align: center;
    }

    table tr:hover {
        background-color: lightgray;
    }

    table tr:nth-child(2n+1) {
        background-color: aliceblue;
    }



a {
    text-decoration: none;
    color: #000;
}

    a:visited {
        color: dimgray;
    }

    a:hover {
        color: dimgray;
    }

    a:active {
        color: blue;
    }
