/* RRD Graph Smokeping-style aesthetics */

.rrd-graph-container svg {
    font-family: 'DejaVu Sans Mono', 'Courier New', monospace;
    background: #f9f9f9;
}

/* Grid styling */
.rrd-graph-grid line {
    stroke: #e0e0e0;
    stroke-width: 0.5;
    stroke-dasharray: 1,1;
}

/* Axis styling */
.rrd-graph-axis path,
.rrd-graph-axis line {
    stroke: #666666;
    stroke-width: 1;
}

.rrd-graph-axis text {
    font-size: 9px;
    fill: #666666;
    font-family: 'DejaVu Sans Mono', monospace;
}

/* Smoke band (characteristic Smokeping look) */
.rrd-graph-area {
    opacity: 0.25;
    fill: #999999;
}

/* Median line */
.rrd-graph-line {
    fill: none;
}

/* Title */
.rrd-graph-title {
    font-size: 11px;
    font-weight: bold;
    fill: #000000;
    font-family: 'DejaVu Sans', sans-serif;
}

/* Legend */
.rrd-graph-legend {
    font-size: 9px;
    font-family: 'DejaVu Sans Mono', monospace;
    fill: #333333;
}

.rrd-graph-legend rect {
    fill: #ffffff;
    stroke: #cccccc;
    stroke-width: 1;
}

/* Graph container styling */
.rrd-graph-container {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.graph-header {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--color-accent);
}

.graph-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.rrd-graph-container svg {
    width: 100%;
    height: auto;
}
