/* ===== Stock Indicator Styles ===== */

/* Green dot indicator (12px circle) */
.stock-dot {
    width: 12px;
    height: 12px;
    background-color: #4CAF50;  /* Green - indicates availability */
    border-radius: 50%;          /* Makes it circular */
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* "På lager" text */
.stock-text {
    font-weight: 500;
    color: #333;
    vertical-align: middle;
}
