.price-inputs-container {
    margin-top: 20px;
}

.price-inputs {
    display: flex;
    gap: 15px;
}

.price-field {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    width: 100%;
    transition: 0.2s ease;
}

.price-field:focus-within {
    border-color: #2c3e50;
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.price-field span {
    margin-right: 5px;
    font-weight: 600;
    color: #555;
}

.price-field input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}