# Apple-inspired JavaScript code for an elegant TOC design
apple_inspired_toc_generation_js = """
"""
.apple-styled-table {
width: 100%;
border-collapse: collapse;
font-family: 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 20px 0;
}
.apple-styled-table th, .apple-styled-table td {
border: 1px solid #e1e1e1;
padding: 10px 15px;
text-align: left;
}
.apple-styled-table th {
background-color: #f6f6f6;
font-weight: 500;
}
.apple-styled-table tbody tr:nth-child(even) {
background-color: #fafafa;
}