table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
            font-weight: 600;
            font-size: 16px;
        }
thead tr th {
    background-color: #448f5d !important;
    color: #ffffff;
}
tr td:nth-child(2) {
    background-color: #5C9D72 !important;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

        th {
            background-color: #f2f2f2;
        }

        tr:nth-child(2) {
            background-color: #f9f9f9;
        }
        /* Responsive styling */
        @media (max-width: 600px) {
            table, thead, tbody, th, td, tr {
                display: block;
            }
            th {
                display: none; /* Hide the table headers */
            }
            tr {
                margin-bottom: 15px;
            }
            td {
                text-align: right;
                position: relative;
                padding-left: 50%;
            }
            td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: calc(50% - 20px);
                text-align: left;
                font-weight: bold;
            }
        }