﻿    	table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #c4e9a8;
}
        tr {
        color:#000000;
        font-weight:bold;
        font-size:13px;
        text-align:left;
        }
th {
    background-color: #214902;
    color: white;
}

.button {
    background-color: #214902; /* Green */
    border: none;
    color: white;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 2px 2px;
    cursor: pointer;
}


.btn-group a {
    background-color: #214902; /* Green background */
    border: 1px solid white; /* Green border */
    color: white; /* White text */
    padding: 8px 20px; /* Some padding */
    cursor: pointer; /* Pointer/hand icon */
    float: left; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #3e8e41;
}