*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}

body{
    background: #1e1e1e;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-bottom: 50px;

    font-family: Arial, Helvetica, sans-serif;
}

header{
    padding: 20px;
    padding-top: 40px;

    margin-bottom: 10vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

#checkouts{
    width: 95vw;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout{
    width: 100%;
}

table{
    width: 100%;
}

.checkout table td{
    text-align: center;
}

td, th{
    padding: 0.2em;
    outline: 1px solid #fff;
}

input{
    -webkit-appearence: none;
    background: #1e1e1e !important;
    width: 100%;
    text-align: center;
    border-radius: 0 !important;
    color: #fff;
}

button{
    -webkit-appearence: none;
    background: #1e1e1e;
    padding: 0.5em;
    margin: 0 auto;
    border-color: #fff;
    cursor: pointer;
}

#form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 95vw;
    max-width: 500px;
}
#table{
    width: 100%;
    display: flex;
}
#table table{
    width: 95vw;
    max-width: 500px;
}

.green{
    color: green;
    border: none;
    pointer-events: none;
}
.red{
    color: red;
}