.ssl-monitor-report {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ssl-monitor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
}

.ssl-monitor-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ssl-monitor-table {
    width: 100%;
    border-collapse: collapse;
}

.ssl-monitor-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.ssl-monitor-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.ssl-monitor-table tr:last-child td {
    border-bottom: none;
}

.ssl-monitor-table tr:hover {
    background: #f8f9fa;
}

.loading {
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.ssl-monitor-last-update {
    text-align: right;
    color: #6c757d;
    font-size: 0.9em;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-valid {
    background: #d4edda;
    color: #155724;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
}

.status-critical {
    background: #f8d7da;
    color: #721c24;
}

.ssl-days-left {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.ssl-days-left.critical {
    background: #dc3232;
    color: white;
}

.ssl-days-left.warning {
    background: #ffb900;
    color: #000;
}

.ssl-days-left.valid {
    background: #46b450;
    color: white;
}