/* -----------------------------------------------------------------------------
 * standalone.css
 * Loaded ONLY by the standalone test page (index.cshtml / index.html).
 * The shipped vendor style.css references a handful of background images with
 * absolute, root-relative paths (e.g. url(/img/roicalculator/...)). Those
 * resolve on the web server but NOT when the page is opened directly from disk
 * via file://. This file re-declares just those rules with paths relative to
 * this stylesheet's location so the standalone page renders correctly offline.
 *
 * It is intentionally NOT referenced by NeptuneROICalculator.aspx, whose
 * server-served absolute paths are already correct. Loaded last, so its
 * equal-specificity rules win over style.css.
 * -------------------------------------------------------------------------- */

#splash-screen {
    background-image: url(/img/roicalculator/bg.jpg);
}

.gr {
    background-image: url(/img/roicalculator/gr-bg.jpg);
}

button.btn.active,
button.btn.active:hover {
    background-image: url(/img/roicalculator/gr-bg.jpg);
}

.empty {
    background-image: url(/img/roicalculator/ln.png);
}

select {
    background-image: url(/img/roicalculator/da.png);
}

.select-display {
    background-image: url(/img/roicalculator/da.png);
}

#chart1,
#chart1m,
#chart2 {
    background-image: url(/img/roicalculator/wm.png);
}
