.dynamic-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E4E2E4;
}

/* Header */
.dynamic-table thead th {
  background-color: #E5EEFF;
  border: 1px solid #E4E2E4;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 20px;
}

/* Body cells */
.dynamic-table tbody td {
  border: 1px solid #E4E2E4;
  padding: 12px 16px;
  font-size: 20px;
}
.one--liner{
    margin-top:30px;
}
.one--liner p{
    color: #787878;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

/* Optional zebra rows */
/* .dynamic-table tbody tr:nth-child(even) {
  background: #f9fbff;
} */
.title--table-content h4 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.title--table-content p {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.title--table-content {
    margin-bottom: 32px;
}

/* Scroller */
.table-responsive-custom {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

/* Hide scrollbar - Chrome, Safari */
.table-responsive-custom::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar - IE, Edge */
.table-responsive-custom {
  -ms-overflow-style: none;
}

/* Hide scrollbar - Firefox */
.table-responsive-custom {
  scrollbar-width: none;
}
@media (max-width: 767px) {

    .dynamic-table th,
    .dynamic-table td {
        font-size: 16px;
        min-width: 285px;
    }
    .title--table-content h4 {
        font-size: 28px;
    }

    .title--table-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .dynamic-table thead {
        display: none; /* Hide headers as usual */
    }

    .dynamic-table,
    .dynamic-table tbody,
    .dynamic-table tr,
    .dynamic-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .dynamic-table tr {
        margin-bottom: 25px;
        border: 1px solid #E4E2E4;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .dynamic-table td {
        text-align: right; /* Value aligns to the right */
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid #eee;
        font-size: 16px !important;
        min-height: 45px;
        display: flex; /* Use flex to align items better */
        justify-content: space-between;
        align-items: center;
    }

    /* Style for the first row/header of the card */
    .dynamic-table td:first-child {
        background-color: #E5EEFF;
        font-weight: 800;
        font-size: 18px;
        justify-content: center; /* Center the title row */
        text-align: center;
    }

    /* The Label (data-label) */
    .dynamic-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-align: left;
        padding-right: 10px;
        color: #333;
        /* Ensure label doesn't show for the first child if it's acting as a title */
    }

    .dynamic-table td:first-child::before {
        content: ""; /* Hide label for the blue header row */
    }

    .dynamic-table td:last-child {
        border-bottom: none;
    }

    .dynamic-table{
        border: 0px !important;
    }
}