body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1 {
    color: #2c3e50;
    border-bottom: 3px solid #4a90e2;
    padding-bottom: 10px;
    margin-top: 20px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.table {
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85em;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
    transition: background-color 0.2s ease;
}

.table td, .table th {
    padding: 8px 6px;
    font-size: 0.9em;
}

caption {
    caption-side: top;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1em;
    padding: 10px;
    text-align: center;
}

/* Info box styling */
p, ul, ol {
    max-width: 800px;
}

hr {
    border: none;
    border-top: 2px solid #ecf0f1;
    margin: 40px 0;
}

/* Example section */
h3 {
    color: #16a085;
    margin-top: 20px;
}

code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

@media print {
    body {
        font-size: 10pt;
    }
    
    .table {
        page-break-inside: avoid;
    }
    
    h2 {
        page-break-after: avoid;
    }
}
