﻿body {
}

/* Striped table with teal as alternate row color */
.table-striped {
    width: 100%;
    border-collapse: collapse;
}

.table-striped th,
.table-striped td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.table-striped tr:nth-child(even) {
    background-color: #008080; /* Teal */
    color: #fff;
}

.table-striped tr:nth-child(odd) {
    background-color: #fff;
    color: #000;
}

.grid-form-check {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
}

.grid-form-check-input {
    width: 2em;
    height: 2em;
    border:2px solid black;
    transform: scale(0.75); /* Makes the checkbox 1.5x bigger */
    margin: 0 0.5em 0 0.5em; /* Optional: adds spacing */
}

.DocumentListitem
{
    margin-bottom:3px;
}


.DocumentListitem:hover {
    border-color: teal;
    border-block-style: solid;
    border-right-width: 2px;
    border-left-width: 2px;
    border-block-width: 2px;
    color: black;
}