table.nures-table {
    width: 100%;
    border-collapse: collapse;
}

.nures-table th,
.nures-table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.nures-table th {
    text-align: center;
    vertical-align: middle;
}

.nures-table-hidden {
    font-weight: bold;
    display: none;
    background-color: #f5f5f5;
}

.nures-table thead tr {
				background-color: #e8e8e8;
			}

			.nures-table tbody tr:nth-child(even) {
				background-color: #f5f5f5;
			}

			.nures-table tbody tr:nth-child(odd) {
				background-color: #ffffff;
			}

/* Responsive styling */
@media (max-width: 800px) {

    table.nures-table {
        width: 100%;
        table-layout: unset;
    }

    .nures-table table,
    .nures-table thead,
    .nures-table tbody,
    .nures-table th,
    .nures-table td,
    .nures-table tr {
        display: block;
        width: 100%;
    }

    .nures-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .nures-table tr {
        border: 1px solid #dfe0df;
        margin-bottom: 10px;
    }

    .nures-table td {
        border: none;
        border-bottom: 1px solid #f4efef;
        position: relative;
    }

    .nures-table-hidden {
        font-weight: bold;
        display: block;
    }
}

.nures-card {
    height:100%;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    word-wrap: break-word;
}