html,
body {
    background: #1B1B1B;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #DDDDDD;
    text-align: left;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.styled-table {
    border-collapse: collapse;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    font-size: 13px;
    text-align: left;
}

.styled-table th {
    padding: 4px 4px;
}

.thblue {
    background-color: #0000ff;
}

.styled-table td{
    padding: 2px 2px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}


input[type=button], input[type=submit], input[type=reset] {
    background-color: #00D877;
    border: none;
    color: white;
    font-style: italic;
    padding: 12px 24px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    width: 220px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

button {
    background-color: #00D877;
    border: none;
    color: white;
    font-style: italic;
    padding: 6px 12px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

h2{
    color: #08C466;
    font-style: italic;
}

.warning{
    color: #FF0000;
    font-weight: bold;
    font-size: 14px;
}

.error {
    color: #FF0000;
}