
.gridview {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

    .gridview th, .gridview td {
        border: 1px solid #421112; /* Rosewood #421112*/
        padding: 8px; /* Bort SK 10px;*/
        text-align: left;
    }

    .gridview th {
        background-color: #421112; /* Rosewood #421112;*/
        color: #F7F3EA; /* Floral white  #F7F3EA;*/
    }

    .gridview tr:nth-child(even) {
        background-color: #F7F3EA; /* Floral white #F7F3EA;*/
    }

    .gridview tr:nth-child(odd) {
        background-color: #EDE2CC; /* Pearl #EDE2CC;*/
    }

.checkbox-center {
    text-align: center;
}

.textbox-full {
    width: 100%;
    box-sizing: border-box; /* Bort SK border-box;*/
}
.nav-tabs .nav-link {
    color: #555;
    transition: all 0.3s ease;
    border: 1px solid black;
}

    .nav-tabs .nav-link:hover {
        color: #421112;
    }

    .nav-tabs .nav-link.active {
        background-color: #421112;
        color: white;
        border: 1px solid black;
    }
.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    /*/height: 50%; /* 10% of the screen height */
}