html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.loginImage {
    background-image: url('/images/2022_bbm_rebel_photo_2.jpg');
    background-size: cover;
    background-position: center;
}



#newTable {
    border-collapse: collapse;
    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);
}

    #newTable thead tr {
        background-color: #F36F26;
        color: #ffffff;
        text-align: left;
    }

    #newTable th,
    #newTable td {
        padding: 12px 15px;
    }

    #newTable tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        #newTable tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        #newTable tbody tr:last-of-type {
            border-bottom: 2px solid #F36F26;
        }

