/**
 * Short Strangle – strategy-specific style overrides.
 * Shared calculator styles are in /calculator-main/core/calculator-core.css.
 * Neutral pill: mid gray between the green (#28a745) and red (#dc3545) accents used in charts/pills.
 * Unlimited loss pill: same as short call (arrow down, red gradient).
 */
.strategy-pill.neutral {
    background: linear-gradient(135deg, #7d848a 0%, #5c636a 100%);
    color: white;
}
.strategy-pill.unlimited-loss {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    color: white;
}
