/* Table styling */
table.scnl-table{
    width: 100%;
    border-collapse: collapse;
}

/* Table header styling */
table.scnl-table thead th {
    text-align: left;
    font-weight: bold;
    padding: 1rem;
    background-color: #f4f4f4;
    border-bottom: 2px solid #ddd;
}

/* Table row as cards */
table.scnl-table tbody tr {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    border-spacing: 0;
    padding-bottom: 2px;
}

/* Table cells inside rows */
table.scnl-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}