.gbutton {
    background-color: #0b6f77;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-family: Arial;
    font-size: 16px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    width: 95px;
    height: 50px;
}

.rbutton {
    background-color: #dc3545;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-family: Arial;
    font-size: 16px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    width: 90px;
    height: 45px;
    cursor: default;
}

.ybutton {
    background-color: #ffc107;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    font-family: Arial;
    font-size: 16px;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    width: 90px;
    min-height: 45px;
    cursor: default;
}


@-webkit-keyframes glowing {
    0% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }

    50% {
        background-color: #0b6f77;
        -webkit-box-shadow: 0 0 20px #0b6f77;
    }

    100% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }

    50% {
        background-color: #0b6f77;
        -webkit-box-shadow: 0 0 20px #0b6f77;
    }

    100% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }

    50% {
        background-color: #0b6f77;
        -webkit-box-shadow: 0 0 20px #0b6f77;
    }

    100% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }
}

@keyframes glowing {
    0% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }

    50% {
        background-color: #0b6f77;
        -webkit-box-shadow: 0 0 20px #0b6f77;
    }

    100% {
        background-color: #006600;
        -webkit-box-shadow: 0 0 3px #006600;
    }
}

.gbutton {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}


table tr td {
    font-size: 14px;
    border-bottom: 1px solid #7e8da7; /*8EAADB*/
}

::-webkit-scrollbar {
    width: 10px; /* for vertical scrollbars */
    height: 12px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
}

.btn.active, .btn:active {
    background-color: #1E90FF;
    color: #fff;
}