/* ==========================================================================
   Powell Market Charts — Frontend Styles
   Styled to match the existing Visualizer charts on powelltricities.com
   ========================================================================== */

.pwc-page-wrap {
    font-family: Arial, sans-serif;
    max-width: 960px;
    margin: 0 auto;
}

.pwc-page-intro {
    text-align: center;
    color: #1a73e8;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

/* Chart container */
.pwc-chart-wrap {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 16px 20px 12px;
    margin-bottom: 28px;
}

.pwc-chart-header {
    text-align: left;
    margin-bottom: 6px;
}

.pwc-chart-title {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #222;
    margin: 0 0 2px;
    padding: 0;
}

.pwc-canvas-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pwc-canvas-wrap canvas {
    display: block;
    width: 100% !important;
}

.pwc-chart-note {
    font-size: 11px;
    color: #999;
    margin: 6px 0 0;
    text-align: center;
}

.pwc-source-note {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 600px) {
    .pwc-chart-wrap {
        padding: 12px;
    }
    .pwc-canvas-wrap {
        height: 280px !important;
    }
}
