/* Price Input Component Styles */
/* Based on style guide patterns */

/* Currency symbol positioning */
.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--bs-success);
    pointer-events: none;
    z-index: 10;
}

/* Price input styling */
.price-input {
    padding-left: 2.5rem !important;
}

/* Focus state for price inputs */
.price-input:focus {
    border-color: var(--bs-success);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Remove spinner buttons or make them subtle */
.price-input::-webkit-inner-spin-button,
.price-input::-webkit-outer-spin-button {
    opacity: 0.5;
}