.credit-event {
    display: flex;
    justify-content: center;
    padding: 2.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 1rem 0;
    background-color: #ededed;
    color: black;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.credit-event:hover {
    background-color: #dbdbdb;
}
.button-confirm {
    background-color: green;
    color: white;
}
.button-confirm:hover {
    background-color: darkgreen;
}
.button-cancel {
    background-color: red;
    color: white;
}
.button-cancel:hover {
    background-color: darkred;
}
#container-centered {
    padding: 1rem;
    margin: auto;
}
#credit-events {
    display: flex;
    flex-direction: column;
}
#credit-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100rem;
    max-width: 100%;
    height: 100vh;
    padding: 1rem;
    margin: 0 auto auto auto;
}
#credit-table-container {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
}
#credit-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
#credit-table caption {
    margin-bottom: 1rem;
    text-align: left;
}
#credit-table th, #credit-table td {
    padding: 1rem;
}
#credit-table thead tr {
    background-color: #dbdbdb;
}
#credit-table tbody tr:nth-child(even) {
    background-color: #ededed;
}
#credit-table tbody tr:nth-child(odd) {
    background-color: white;
}
#credit-table a {
    display: flex;
    justify-content: center;
    color: black;
    text-decoration: none;
}
#reader {
    width: 100%;
}
#back {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
    margin: 0;
}
#error-container {
    background-color: red;
}
#error-container .sub-heading, #success-container .sub-heading {
    color: white;
}
#success-container {
    background-color: green;
}
#qr-user {
    font-weight: 700;
}