﻿.btn-group a {
    background-color: #c4bbbb; /* Green background */
    border: 1px solid #adf8f6; /* Green border */
    color: blue; /* White text */
    padding: 10px 24px; /* Some padding */
    cursor: pointer; /* Pointer/hand icon */
    float: left; /* Float the buttons side by side */
 width:100%;

}

/* Clear floats (clearfix hack) */
.btn-group:after {
    content: "";
    clear: both;
    display: table;
}

.btn-group a:not(:last-child) {
    border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group a:hover {
    background-color: #c8feb1;
}
