﻿body {
    padding: 30px;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    box-sizing: border-box;
}
select {
    margin-left: 50px;
    width: 150px;
    padding: 5px 35px 5px 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    height: 34px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(oracle.png) 96% / 15% no-repeat #eee;
}

    /* CAUTION: IE hackery ahead */
    select::-ms-expand {
        display: none; /* remove default arrow on ie10 and ie11 */
    }

/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
.css-button {
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 5px;
    border: solid 1px #3866a3;
    text-shadow: 1px 1px 0px #528ECC;
    box-shadow: inset 1px 1px 0px 0px #BBDAF7;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: ABeeZee, sans-serif;
    background: linear-gradient(180deg, #386907 10%, #6fcf46 100%);
    display: inline-flex;
    align-items: center;
    padding: 0;
}

    .css-button:hover {
        background: linear-gradient(180deg, #6fcf46 10%, #386907 100%);
    }

.css-button-text {
    position: relative;
    padding: 8px 18px;
}

.css-button-icon {
    position: relative;
    border-right: 1px solid #ffffff29;
    box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
    padding: 8px 10px;
}

table {
    border-collapse: collapse;
    font-family: Tahoma, Geneva, sans-serif;
}

    table td {
        padding: 5px;
    }

    table tbody th {
        background-color: #54585d;
        color: #ffffff;
        font-weight: bold;
        font-size: 13px;
        border: 1px solid #54585d;
    }

    table tbody td {
        color: #636363;
        border: 1px solid #dddfe1;
    }

    table tbody tr {
        background-color: #f9fafb;
    }

        table tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }