/* Improved Table Styling - Light Grey Borders & More Padding */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    background-color: white;
}

table td {
    border: 1px solid #d0d0d0; /* Light grey border */
    padding: 12px 16px; /* Increased padding */
    text-align: left;
    vertical-align: top;
}

table td:first-child {
    font-weight: bold;
}

/* Optional: Alternating row colors for better readability */
table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Optional: Hover effect */
table tr:hover {
    background-color: #f0f0f0;
}

/* Responsive - Auto-scale to page width */
@media screen and (max-width: 768px) {
    table {
        font-size: 14px;
    }
    table td {
        padding: 8px 12px;
    }
}

@media screen and (max-width: 480px) {
    table {
        font-size: 12px;
    }
    table td {
        padding: 6px 8px;
    }
}