﻿.gridview-style {
    border: 2px solid #5F8D37;
    border-collapse: collapse; /* This ensures that the borders collapse into one another */
}

    /*Style header*/
    .gridview-style th {
        background-color: #FFF1D7; /* Header background color */
        color: #5F8D37; /* Header text color */
        font-weight: bold;
        padding: 10px; /* Add padding to the header cells */
    }

    /*Style data row*/
    .gridview-style tr {
        background-color: white; /* Data row background color */
    }

        /*Style alternate data row*/
        .gridview-style tr:nth-child(even) {
            background-color: #f9f9f9; /* Alternating row background color */
        }

    /*style data cell*/
    .gridview-style td {
        padding: 10px; /* Add padding to the data cells */
    }


/*Text boxes*/
.input-group {
    margin-bottom: 2px;
}

