/* Make table responsive */
.table-responsive {
    overflow-x: auto;
}

/* Table styling */
.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header styling */
.table th {
    background-color: #f7f7f7;
    font-weight: bold;
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #444;
}

/* Body cell styling */
.table td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

/* Row striping */
.table tr:nth-child(odd) {
    background-color: #fafafa;
}

/* Special styling for lists in cells */
.table td ul {
    margin: 10px 0 0 20px;
    padding-left: 0;
}

.table td ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Optional styling for links */
.table a {
    color: #007bff;
    text-decoration: none;
}