/**
 * Styles for exported HTML files
 * This CSS is embedded in exported HTML files to make them self-contained
 */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

h1 {
    color: #333;
}

.export-info {
    margin-bottom: 20px;
    color: #666;
}

.footer {
    margin-top: 30px;
    color: #666;
    font-size: 12px;
    text-align: center;
}

th:nth-child(2), td:nth-child(2) {
    min-width: 140px; /* Date/Time column width */
}

th.date-time, td.date-time {
    min-width: 140px; /* Alternative class-based selector */
}
