.fixTableHead {
    text-align: right;
    overflow-y: auto;
    height: 600px;
    border: 1px solid #BFBFBF;
}

    .fixTableHead thead {
        position: sticky;
        top: 0;
        border: 1px solid #BFBFBF;
        background: #FFFFFF;
    }

        .fixTableHead thead th:after, th:before {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
        }


th:before {
    top: -2px;
    border-top: 1px solid #BFBFBF;
}

th:after {
    bottom: -2px;
    border-bottom: 1px solid #BFBFBF;
}

.fixTableHead td {
    border: 1px solid #BFBFBF;
    background: #FFFFFF;
}



.centered-table {
    width: 90%;
    margin: 0 auto; /* centers the table horizontally */
}



div.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
}

div.cardheader {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    font-size: 40px;
}

div.cardcontainer {
    padding: 10px;
}

.card-row {
    display: flex;
    flex-wrap: wrap; /* or wrap if you want them to break on smaller screens */
    gap: 10px; /* optional spacing between cards */
    justify-content: start; /* or center / space-between / space-around */
    align-items: flex-start; /* aligns top edges */
}

.card-wrapper {
    display: flex;
    justify-content: center; /* centers the cards horizontally */
    align-items: flex-start; /* aligns them to the top */
    gap: 10px; /* optional spacing between cards */
    flex-wrap: wrap; /* allows wrapping if screen is narrow */
    padding: 20px; /* optional padding around the group */
}

.card-link {
    text-decoration: none;
    display: block;
    border: none;
    background-color: #f8f9fa; /* Light background */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    padding: 10px;
}

    .card-link:hover {
        transform: scale(1.05); /* Slight zoom */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
        background-color: #e2e6ea; /* Slightly darker on hover */
        text-decoration: none;
    }







.wrap {
    white-space: normal;
    width: 120px;
}




.ChkBoxClass input {
    width: 25px;
    height: 25px;
}

.center-cell {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* aligns text to the right */
    height: 100px;
}


.rcorners1 {
    border-radius: 25px;
    background: #E0E0E0;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 12px 12px #cccccc;
}


.thin-line {
    border-top: 1px solid #ccc;
    margin: 1rem 0;
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.footer-box {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
}


.center {
    text-align: center;
}


/*Very small screens tweak*/

@media (max-width: 576px) {
    .card-icon {
        font-size: 1.5rem;
    }

    .footer-box {
        padding: 1rem;
    }
}







.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%; /* Adjust as needed */
}

.background-image {
    width: 100%;
    height: auto;
    display: block;
}

/*.bottom-band {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black * /
    color: white;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
*/

.bottom-band {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999; /* Ensures it stays above other content */
}

.FooterHyperLink {
    color: #ffffff;
    text-decoration: underline;
}
