.fsm-progress-graphs {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fsm-progress-graphs .graph-container {
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.fsm-progress-graphs .graph-container:last-child {
    margin-bottom: 0;
}

.fsm-progress-graphs .strength-graph {
    height: 400px;
}

.fsm-progress-graphs .completion-graph {
    height: 400px;
}

.fsm-progress-graphs canvas {
    width: 100% !important;
}

.fsm-progress-graphs .error {
    color: #dc3545;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dc3545;
    border-radius: 4px;
    background-color: #f8d7da;
}

@media (max-width: 768px) {
    .fsm-progress-graphs {
        padding: 10px;
    }

    .fsm-progress-graphs .graph-container {
        margin-bottom: 20px;
        padding: 15px;
    }

    .fsm-progress-graphs .strength-graph,
    .fsm-progress-graphs .completion-graph {
        height: 300px;
    }
}
