/**
 * OMR Symbol Module CSS
 * Styles for the OMR currency symbol SVG replacement
 */

.omr-currency-symbol {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: inherit;
}

/* Ensure proper spacing */
.omr-currency-symbol + * {
    margin-left: 0.2em;
}

/* Make sure SVG inherits text color */
.omr-currency-symbol path,
.omr-currency-symbol g {
    fill: currentColor;
}

