/**
 * VMP Fence Security - Report Export Styles
 * Used for HTML report exports (email/download)
 * 
 * @package VMPFence
 * @since 1.0.0
 */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.header {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.metric {
    display: inline-block;
    margin: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.status-healthy {
    color: #28a745;
}

.status-warning {
    color: #ffc107;
}

.status-critical {
    color: #dc3545;
}
