@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;400;600&display=swap');
.datalentor-table {
    width: 100%;
    overflow-x: auto;
    /* Mobile par scroll allow */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    font-family: 'Wulkan Display Regular', sans-serif;
}


/* Table Base */

.datalentor-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 600px;
}

.datalentor-table th,
.datalentor-table td {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-right: none;
    padding: 16px;
    font-size: 16px;
    color: rgb(34, 34, 34);
    font-family: "Raleway", Helvetica, Arial, sans-serif !important;
}


/* Heading Row */

.datalentor-table thead tr:first-child th {
    border-top: none;
    font-size: 24px;
    line-height: 118%;
    text-align: center;
    color: #4C4D4D;
    font-weight: 300;
    font-family: "Raleway" !important;
}


/* First Column Style */

.datalentor-table th:first-child,
.datalentor-table td:first-child {
    text-align: left;
    font-size: 16px;
    color: #222 !important;
    width: 23.5%;
}


/* Highlight Columns */

.datalentor-table th.highlight,
.datalentor-table td.highlight {
    background-color: #F5FAF8;
    font-weight: 300;
    color: rgb(220, 169, 148) !important;
}

.datalentor-table .highlight i {
    color: rgb(220, 169, 148);
}


/* Icons */

.datalentor-table i {
    font-size: 22px;
}

.datalentor-table .fa-times-circle {
    color: #E5E5E5;
}

.fa-check-circle {
    color: rgb(76, 77, 77);
}


/* ✅ Responsive adjustments */

@media (max-width: 768px) {
    /* Heading font smaller */
    .datalentor-table thead tr:first-child th {
        font-size: 18px;
    }
    /* Normal cells smaller */
    .datalentor-table th,
    .datalentor-table td {
        font-size: 14px;
        padding: 12px;
    }
    /* Icon size smaller */
    .datalentor-table i {
        font-size: 16px;
    }
}