.akg-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid #212121;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.akg-dynamic-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* Header styling based on your screenshots */
.akg-dynamic-table thead tr {
    background-color: #d32f2f;
    color: white;
}

.akg-dynamic-table th {
    padding: 18px;
    padding-left: 30px;
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    border-right: 1px solid #212121;
    font-family: "Montserrat", sans-serif;
}
.akg-dynamic-table thead tr th:last-child {
    border-right: 0px;
}

.akg-dynamic-table td {
    padding: 15px 30px;
    border-bottom: 1px solid #212121;
    border-right: 1px solid #212121;
    color: #444;
    font-size: 18px;
}
.akg-dynamic-table tbody tr:last-child td {
    border-bottom: 0px;
}
.akg-dynamic-table tbody tr td:last-child {
    border-right: 0px;
}

/* Red Highlight for first column */
.akg-first-col {
    color: #d32f2f !important;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

/* Responsive Table for Mobile */
@media screen and (max-width: 768px) {
    .akg-dynamic-table thead { display: none; }
    .akg-dynamic-table td {
        display: block;
        width: 100% !important;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-right: none;
    }
    .akg-dynamic-table td::before {
        content: "Detail:";
        position: absolute;
        left: 15px;
        font-weight: bold;
        color: #333;
    }
}