/* dmmgraph.css - Generalized graph container styling */
.dmmgraph-container {
    width: 100%;
    margin: auto;
    font-family: Arial, sans-serif;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 16px 20px 24px 20px;
    margin-bottom: 24px;
}
.dmmgraph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 10px; */
}
.dmmgraph-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #0a278a;
}
.dmmgraph-controls {
    display: flex;
    gap: 10px;
}
.dmmgraph-canvas {
    width: 100% !important;
    max-width: 100%;
    /* height: 320px !important; */
}
